blob: 6862e575956d723ed643d00311a189cd489b02d4 (
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=7
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=(fa3c27e89675ed926dcdd940a1093584d22bb2dd7bb4dedf5d658c14fdf257f6)
build() {
cd "auto-auto-complete-${pkgver}"
make
}
package() {
cd "auto-auto-complete-${pkgver}"
make DESTDIR="$pkgdir" install
}
|