Date: Wednesday, October 18, 2017 @ 21:19:05
Author: foxboron
Revision: 263297
archrelease: copy trunk to community-any
Added:
pass-otp/repos/community-any/
pass-otp/repos/community-any/PKGBUILD
(from rev 263296, pass-otp/trunk/PKGBUILD)
----------+
PKGBUILD | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
Copied: pass-otp/repos/community-any/PKGBUILD (from rev 263296,
pass-otp/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD (rev 0)
+++ community-any/PKGBUILD 2017-10-18 21:19:05 UTC (rev 263297)
@@ -0,0 +1,20 @@
+# Maintainer: Morten Linderud <[email protected]>
+# Contibutor: Alexandre Pujol <[email protected]>
+
+pkgname='pass-otp'
+pkgver=1.0.0
+pkgrel=2
+pkgdesc='A pass extension for managing one-time-password (OTP) tokens.'
+arch=('any')
+url='https://github.com/tadfisher/pass-otp'
+license=('GPL3')
+depends=('pass'
+ 'oath-toolkit'
+ 'qrencode')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tadfisher/pass-otp/archive/v${pkgver}.tar.gz")
+sha256sums=('ed409b50c417814f9feed913bb4c09916a10f635404a6d8c2f4e842319c58052')
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}