opt/pinentry/Pkgfile
Thomas Penteker fef6b25033 [notify] pinentry: 0.7.5 -> 0.8.0
The pinentry port was split into:
  pinentry
  pinentry-gtk2
  pinentry-qt4

whereas the -gtk2 and -qt4 ports depend on pinentry. This allows you to have
pinentry without it's usual X dependencies installed.
The pinentry port now only contains the curses-based interface and a wrapper
to automatically select the interface.
2010-03-27 01:33:37 +01:00

27 lines
659 B
Plaintext

# Description: Secure PinEntry Dialog
# URL: http://www.gnupg.org
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
# Nice to have: pinentry-gtk2 pinentry-qt4
name=pinentry
version=0.8.0
release=1
source=(ftp://ftp.gnupg.org/gcrypt/$name/$name-$version.tar.gz pinentry)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-pinentry-{gtk,gtk2,qt,qt4} \
--enable-pinentry-curses
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
rm $PKG/usr/bin/pinentry
install -m 755 ../pinentry $PKG/usr/bin/pinentry
}