summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Fišer2016-02-17 18:32:05 +0100
committerJakub Fišer2016-02-17 18:32:05 +0100
commit3d4c9b688b0ad7040f26f1c0772a60a368a12c93 (patch)
tree5b349241e54107edf104263d8354dc5ff194bf36
downloadaur-3d4c9b688b0ad7040f26f1c0772a60a368a12c93.tar.gz
initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD19
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1cee63e39ff7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by makepkg 5.0.0
+# Wed Feb 17 17:31:56 UTC 2016
+pkgbase = pwdhash-git
+ pkgdesc = Site-specific password generator
+ pkgver = 2015.01.28.857a44b
+ pkgrel = 1
+ url = https://github.com/abbot/pwdhash
+ arch = any
+ license = BSD
+ depends = python
+ source = git+https://github.com/abbot/pwdhash
+ md5sums = SKIP
+
+pkgname = pwdhash-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..da17dc5c0829
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Jakub Fišer <reverse zc.uresifu@abuk>
+_pkgname=pwdhash
+pkgname=$_pkgname-git
+pkgver=2015.01.28.857a44b
+pkgrel=1
+pkgdesc="Site-specific password generator"
+arch=('any')
+url='https://github.com/abbot/pwdhash'
+license=('BSD')
+depends=('python')
+source=( "git+https://github.com/abbot/pwdhash")
+md5sums=("SKIP")
+
+package()
+{
+ cd "$srcdir/$_pkgname" || return 1
+ python2 setup.py install --root="$pkgdir" -O1
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}