aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux
diff options
context:
space:
mode:
Diffstat (limited to 'dist/archlinux')
-rw-r--r--dist/archlinux/stable/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD
new file mode 100644
index 0000000..76206c4
--- /dev/null
+++ b/dist/archlinux/stable/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=autopasswd
+pkgver=1
+pkgrel=1
+pkgdesc="Reproducible password generator"
+url="https://github.com/maandree/autopasswd"
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(glibc libpassphrase argparser)
+makedepends=(glibc libpassphrase argparser make coreutils gcc)
+source=("${url}/archive/${pkgver}.tar.gz")
+sha256sums=(324e8f850a1fe8af348d89f25686b62ee30b161f1d49246e03ff1a799a532967)
+
+
+build() {
+ cd "$srcdir/autopasswd-$pkgver"
+ make PREFIX=/usr LDFLAGS=
+}
+
+package() {
+ cd "$srcdir/autopasswd-$pkgver"
+ make PREFIX=/usr DESTDIR="$pkgdir" install
+}
+