2006-12-25 14:28:47 +01:00
|
|
|
# Description: Secure PinEntry Dialog
|
2019-10-03 22:03:33 +10:00
|
|
|
# URL: https://gnupg.org/related_software/pinentry/
|
2010-03-27 01:33:37 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2019-10-04 18:37:50 +10:00
|
|
|
# Depends on: libassuan libcap util-linux
|
|
|
|
# Optional: pinentry-gtk2 pinentry-qt4 libsecret
|
2006-12-25 14:28:47 +01:00
|
|
|
|
|
|
|
name=pinentry
|
2017-12-30 00:51:50 +01:00
|
|
|
version=1.1.0
|
2016-12-01 00:43:22 +01:00
|
|
|
release=1
|
2019-10-04 18:56:13 +10:00
|
|
|
source=(https://www.gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2 pinentry)
|
2006-12-25 14:28:47 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2008-05-12 21:46:00 +02:00
|
|
|
|
2006-12-25 14:28:47 +01:00
|
|
|
./configure \
|
2010-03-27 01:33:37 +01:00
|
|
|
--prefix=/usr \
|
2016-06-01 22:29:59 +02:00
|
|
|
--disable-pinentry-{gtk2,qt,qt5} \
|
2010-03-27 01:33:37 +01:00
|
|
|
--enable-pinentry-curses
|
2016-06-01 22:29:59 +02:00
|
|
|
|
2006-12-25 14:28:47 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2007-07-07 20:10:05 +02:00
|
|
|
rm -rf $PKG/usr/share
|
2010-03-27 01:33:37 +01:00
|
|
|
rm $PKG/usr/bin/pinentry
|
2016-06-01 22:29:59 +02:00
|
|
|
install -m 755 $SRC/pinentry $PKG/usr/bin/pinentry
|
2006-12-25 14:28:47 +01:00
|
|
|
}
|