Tim Biermann
c3f5bef55c
This reverts commit 08394a7a199a8ff8623ef34770de3e1175bce912. 2.3.0 is the new devel release. CRUX will stay with the latest stable release though.
27 lines
561 B
Plaintext
27 lines
561 B
Plaintext
# Description: GNU privacy guard
|
|
# URL: https://www.gnupg.org
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libgcrypt libksba pinentry npth
|
|
|
|
name=gnupg
|
|
version=2.2.27
|
|
release=1
|
|
source=(https://gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2)
|
|
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--disable-nls \
|
|
--disable-ldap
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
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*
|
|
}
|