diff options
-rw-r--r-- | build-aux/PKGBUILD | 28 |
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 +} |