aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-23 21:49:39 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-23 21:49:39 +0200
commite2233d06754c503ecbfdf92a370d2fddd06e09d7 (patch)
tree4a847c8d2e447760c0ec45a1fcc43b6dd220ce3b /dist
parentm (diff)
downloadautopasswd-e2233d06754c503ecbfdf92a370d2fddd06e09d7.tar.gz
autopasswd-e2233d06754c503ecbfdf92a370d2fddd06e09d7.tar.bz2
autopasswd-e2233d06754c503ecbfdf92a370d2fddd06e09d7.tar.xz
dist
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'dist')
-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
+}
+