blob: 5abae8f429de3f278c7e573f38a28bf35dec782e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=auto-auto-complete
pkgver=4
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=(0cc68e4a49a0168747597e7ff8bd58352a3747058097a69cec94f43fe67de0b3)
build() {
cd "auto-auto-complete-${pkgver}"
make
}
package() {
cd "auto-auto-complete-${pkgver}"
make DESTDIR="$pkgdir" install
}
|