2010-03-27 01:35:04 +01:00
|
|
|
# Description: Secure PinEntry Dialog
|
2019-10-04 18:58:28 +10:00
|
|
|
# URL: https://gnupg.org/related_software/pinentry/
|
2010-03-27 01:35:04 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2019-10-04 18:58:28 +10:00
|
|
|
# Depends on: pinentry qt5
|
2010-03-27 01:35:04 +01:00
|
|
|
|
2019-10-04 18:58:28 +10:00
|
|
|
name=pinentry-qt5
|
2017-12-30 00:52:22 +01:00
|
|
|
version=1.1.0
|
2010-03-27 01:35:04 +01:00
|
|
|
release=1
|
2019-10-04 18:58:28 +10:00
|
|
|
source=(https://www.gnupg.org/ftp/gcrypt/pinentry/pinentry-$version.tar.bz2)
|
2010-03-27 01:35:04 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd pinentry-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2019-10-04 18:58:28 +10:00
|
|
|
--disable-pinentry-{curses,gtk2} \
|
2016-06-01 22:29:21 +02:00
|
|
|
--enable-pinentry-qt
|
2010-03-27 01:35:04 +01:00
|
|
|
|
|
|
|
make -j1
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -rf $PKG/usr/share
|
2016-06-01 22:29:21 +02:00
|
|
|
rm $PKG/usr/bin/pinentry
|
2010-03-27 01:35:04 +01:00
|
|
|
}
|