aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: c84257c2f535dcf9c1d32975bf233e403ed2150d (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=6
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=(a2f7ef82437168245d9721386930e540b1b9f51c3b006589e9cc4bb93166b103)


build() {
  cd "auto-auto-complete-${pkgver}"
  make
}

package() {
  cd "auto-auto-complete-${pkgver}"
  make DESTDIR="$pkgdir" install
}