2006-12-25 14:28:47 +01:00
|
|
|
# Description: Secure PinEntry Dialog
|
2021-01-29 12:25:33 +00:00
|
|
|
# URL: https://gnupg.org/related_software/pinentry/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: libassuan libcap util-linux
|
|
|
|
# Optional: pinentry-gtk2 pinentry-qt4 libsecret
|
2006-12-25 14:28:47 +01:00
|
|
|
|
|
|
|
name=pinentry
|
2021-01-27 22:09:18 +00:00
|
|
|
version=1.1.1
|
2016-12-01 00:43:22 +01:00
|
|
|
release=1
|
2021-01-27 22:09:18 +00:00
|
|
|
source=(https://gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2
|
|
|
|
pinentry)
|
2006-12-25 14:28:47 +01:00
|
|
|
|
|
|
|
build() {
|
2021-01-29 12:25:33 +00:00
|
|
|
cd $name-$version
|
2008-05-12 21:46:00 +02:00
|
|
|
|
2021-01-29 12:25:33 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-pinentry-{gtk2,qt,qt5} \
|
|
|
|
--enable-pinentry-curses
|
2016-06-01 22:29:59 +02:00
|
|
|
|
2021-01-29 12:25:33 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-12-25 14:28:47 +01:00
|
|
|
|
2021-01-29 12:25:33 +00:00
|
|
|
rm -rf $PKG/usr/share
|
|
|
|
rm $PKG/usr/bin/pinentry
|
|
|
|
install -m 755 $SRC/pinentry $PKG/usr/bin/pinentry
|
2006-12-25 14:28:47 +01:00
|
|
|
}
|