diff options
author | root <root@rshg054.dnsready.net> | 2012-01-17 23:14:55 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-17 23:14:55 +0000 |
commit | 7de0a9c21ecdb7becae761d7c9f2e723cb9ae0d3 (patch) | |
tree | cf569d409766ee004e997226104d64aa76bcd28f /core/pinentry/PKGBUILD | |
parent | 08a16f35d70b750b4db213a4bfcbacf5b3be4d74 (diff) |
Tue Jan 17 23:14:54 UTC 2012
Diffstat (limited to 'core/pinentry/PKGBUILD')
-rw-r--r-- | core/pinentry/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/core/pinentry/PKGBUILD b/core/pinentry/PKGBUILD new file mode 100644 index 000000000..c94625d29 --- /dev/null +++ b/core/pinentry/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 146747 2012-01-16 22:52:55Z dreisner $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> +pkgname=pinentry +pkgver=0.8.1 +pkgrel=3 +pkgdesc="a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.gnupg.org/aegypten2" +depends=('ncurses' 'libcap>=2.16') +makedepends=('gtk2' 'qt') +optdepends=('gtk2: for gtk2 backend' + 'qt: for qt4 backend') +source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.gz + gtk2-pinentry-segfault.patch) +install=pinentry.install + +build() { + cd $startdir/src/$pkgname-$pkgver + for file in qt4/*.moc; do + /usr/bin/moc ${file/.moc/.h} > ${file} + done + ./configure --prefix=/usr \ + --enable-pinentry-curses \ + --disable-pinentry-gtk \ + --disable-pinentry-qt \ + --enable-pinentry-gtk2 \ + --enable-pinentry-qt4 \ + --enable-fallback-curses + make + make DESTDIR=${pkgdir} install + #rm ${pkgdir}/usr/share/info/dir + #rm ${pkgdir}/usr/bin/pinentry + #ln -s /usr/bin/pinentry-gtk-2 ${pkgdir}/usr/bin/pinentry +} +md5sums=('81f99904daee5331eb6738408bb024b6' + 'bd9888fafc56464b2c4deaad5b8edb07') |