aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-08-04 01:57:05 +0200
committerMattias Andrée <maandree@operamail.com>2013-08-04 01:57:05 +0200
commit97d5027fe2dfc277b0de1a1c8918bdd49b2af103 (patch)
treed2eda8f59b3dd6778f0f330d2b14428dc94a391f /dist/archlinux/stable
parentm (diff)
downloadpasscheck-97d5027fe2dfc277b0de1a1c8918bdd49b2af103.tar.gz
passcheck-97d5027fe2dfc277b0de1a1c8918bdd49b2af103.tar.bz2
passcheck-97d5027fe2dfc277b0de1a1c8918bdd49b2af103.tar.xz
dist
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'dist/archlinux/stable')
-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..cf26d4c
--- /dev/null
+++ b/dist/archlinux/stable/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=passcheck
+pkgver=1
+pkgrel=1
+pkgdesc='Passphrase strenght evaluater'
+arch=('any')
+url='https://github.com/maandree/passcheck'
+license=('GPL3')
+depends=('python3')
+makedepends=('make' 'sed' 'coreutils' 'texinfo' 'gzip')
+source=(https://github.com/maandree/passcheck/archive/$pkgver.tar.gz)
+sha256sums=(8ed737dee3de23e3d8f3645c5c4822ac66cf990adb2528e771928becbdd90f99)
+
+
+build() {
+ cd passcheck-$pkgver
+ make
+}
+
+package() {
+ cd passcheck-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+