diff options
author | Fredrik Salomonsson <plattfot@posteo.net> | 2021-01-31 16:52:37 -0800 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@posteo.net> | 2021-01-31 16:55:15 -0800 |
commit | 2bba0771c3ed1e23b5fc89e31162c404712f30fe (patch) | |
tree | 6cc22db7a2b480bc26e8a7ee3709faf9225fd6de /build-aux | |
parent | 241efa432e41cf60cbaea5f467c0218deb82febe (diff) | |
download | pinentry-rofi-2bba0771c3ed1e23b5fc89e31162c404712f30fe.tar.gz |
Add PKGBUILD for Arch Linux
Diffstat (limited to 'build-aux')
-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 +} |