opt/libgpg-error/Pkgfile

27 lines
536 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A small library defining error values for GnuPG components
2009-09-19 00:58:22 +02:00
# URL: http://www.gnupg.org
# Maintainer: Thomas Penteker, tek at serverop dot de
2006-02-23 16:26:10 +01:00
name=libgpg-error
2019-04-19 22:14:11 +02:00
version=1.36
2015-03-21 15:18:26 +01:00
release=1
2019-04-19 22:14:11 +02:00
source=(https://www.gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2
gawk.patch)
2006-02-23 16:26:10 +01:00
build() {
2009-09-19 00:58:22 +02:00
cd $name-$version
2008-02-01 17:46:30 +01:00
2019-04-19 22:14:11 +02:00
patch -p1 -i $SRC/gawk.patch
autoreconf
./configure --prefix=/usr \
--disable-nls \
--enable-static
2009-09-19 00:58:22 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info/
2006-02-23 16:26:10 +01:00
}