opt/gnupg/Pkgfile

27 lines
561 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GNU privacy guard
2021-01-29 13:31:39 +01:00
# URL: https://www.gnupg.org
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libgcrypt libksba pinentry npth
2006-02-23 16:26:10 +01:00
name=gnupg
2021-01-14 12:30:33 +01:00
version=2.2.27
2010-07-19 22:45:58 +02:00
release=1
2020-12-22 13:27:17 +01:00
source=(https://gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2)
2017-06-16 16:28:34 +02:00
2006-02-23 16:26:10 +01:00
build () {
2021-01-29 13:31:39 +01:00
cd $name-$version
2006-02-23 16:26:10 +01:00
2021-01-29 13:31:39 +01:00
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--disable-nls \
--disable-ldap
2006-02-23 16:26:10 +01:00
2021-01-29 13:31:39 +01:00
make
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
2021-01-29 13:31:39 +01:00
rm -rf $PKG/usr/share/{info,doc}
rm -f $PKG/usr/share/gnupg/{FAQ,faq.html,qualified.txt}
rm -f $PKG/usr/share/gnupg/help*
2006-02-23 16:26:10 +01:00
}