aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable
diff options
context:
space:
mode:
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
+}
+