From 2bba0771c3ed1e23b5fc89e31162c404712f30fe Mon Sep 17 00:00:00 2001 From: Fredrik Salomonsson Date: Sun, 31 Jan 2021 16:52:37 -0800 Subject: Add PKGBUILD for Arch Linux --- build-aux/PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 build-aux/PKGBUILD 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 +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 +} -- cgit