summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2020-07-27 20:56:34 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2020-07-27 20:56:34 -0700
commit79a75be61c98b0668428c91564c03262b5d1d7f8 (patch)
treefe9cfa969c3cfa171781aa31f7ea9ef1f9d8e177
downloadpass-update-79a75be61c98b0668428c91564c03262b5d1d7f8.tar.xz
Initial commit
-rw-r--r--PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..7ce2625
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer: jc_gargma <jc_gargma@iserlohn-fortress.net>
+# Maintainer (AUR): Alexandre Pujol <alexandre@pujol.io>
+
+# # I maintain this because:
+# I use it and it is not in an official repo
+
+pkgname='pass-update'
+pkgver=2.1
+pkgrel=2
+pkgdesc='A pass extension that provides an easy flow for updating passwords.'
+arch=('any')
+url='https://github.com/roddhjav/pass-update'
+license=('GPL3')
+depends=('pass')
+source=(https://github.com/roddhjav/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz
+ https://github.com/roddhjav/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc)
+sha512sums=('6f7e12ff8bc608bbfb5ae15efd13052896f247d53d9d092f1c1cc527a0e33d8f638264af2ca4af8c94d772c998f9d321cfceeaaad843fb8b5322a2e9bf7d08d5'
+ '0e58890a2e661080e5e7248a6e3497a2558db14af3a695377c923aeca43bde361d6bafa88ebc35c9a132dfdacb167df76f7fcf1016e51a589baad7c37b32f96d')
+
+# The public key is found at https://pujol.io/keys
+# gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC
+validpgpkeys=('06A26D531D56C42D66805049C5469996F0DF68EC')
+
+check() {
+ cd "$pkgname-$pkgver"
+ make tests
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" FORCE_ALL=1 install
+}