aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable
diff options
context:
space:
mode:
Diffstat (limited to 'dist/archlinux/stable')
-rw-r--r--dist/archlinux/stable/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD
new file mode 100644
index 0000000..6e8150f
--- /dev/null
+++ b/dist/archlinux/stable/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=auto-auto-complete
+pkgver=2
+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')
+source=(https://github.com/maandree/auto-auto-complete/archive/$pkgver.tar.gz)
+sha256sums=(6b083da13302b83325aeb961f9b55dc9626e1f8096537ee598c43e09e67d0f64)
+
+build() {
+ cd auto-auto-complete-$pkgver
+ make
+}
+
+package() {
+ cd auto-auto-complete-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+