aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFredrik Salomonsson <plattfot@posteo.net>2021-01-31 16:52:37 -0800
committerFredrik Salomonsson <plattfot@posteo.net>2021-01-31 16:55:15 -0800
commit2bba0771c3ed1e23b5fc89e31162c404712f30fe (patch)
tree6cc22db7a2b480bc26e8a7ee3709faf9225fd6de
parent241efa432e41cf60cbaea5f467c0218deb82febe (diff)
downloadpinentry-rofi-2bba0771c3ed1e23b5fc89e31162c404712f30fe.tar.gz
Add PKGBUILD for Arch Linux
-rw-r--r--build-aux/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/build-aux/PKGBUILD b/build-aux/PKGBUILD
new file mode 100644
index 0000000..1e53425
--- /dev/null
+++ b/build-aux/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Fredrik Salomonsson <plattfot@posteo.net>
+pkgname=guile-pinentry-rofi
+pkgver=2.0.2
+pkgrel=1
+epoch=
+pkgdesc="rofi frontend for pinentry"
+arch=('any')
+url=""
+license=('Expat')
+groups=()
+depends=('rofi' 'guile' )
+makedepends=()
+checkdepends=()
+optdepends=()
+provides=()
+conflicts=('pinentry-rofi-guile')
+replaces=()
+backup=()
+options=()
+install=
+changelog=
+source=("$pkgname-$pkgver::git+https://github.com/plattfot/pinentry-rofi.git#tag=$pkgver")
+noextract=()
+md5sums=('SKIP')
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ autoreconf -vif && ./configure --prefix=/usr && make && DESTDIR="$pkgdir" make install
+}