blob: 85000a8abfb72d6170b935e92fb56087c13f74c9 (
plain) (
tree)
|
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=auto-auto-complete
pkgver=5
pkgrel=1
pkgdesc='Autogenerate shell auto-completion scripts'
arch=('any')
url='https://github.com/maandree/auto-auto-complete'
license=('GPL3')
depends=('python3')
makedepends=('make' 'sed' 'coreutils' 'python3' 'texinfo')
install=auto-auto-complete.install
source=(https://github.com/maandree/auto-auto-complete/archive/$pkgver.tar.gz)
sha256sums=(54d7dda7ba7ef97419b3976f19f82826cf4cc97e6093660b107062ca8052f8a8)
build() {
cd "auto-auto-complete-${pkgver}"
make
}
package() {
cd "auto-auto-complete-${pkgver}"
make DESTDIR="$pkgdir" install
}
|