opt/libgpg-error/Pkgfile

23 lines
476 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A small library defining error values for GnuPG components
2021-11-04 19:58:10 +01:00
# URL: https://www.gnupg.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=libgpg-error
2023-04-07 12:01:38 +02:00
version=1.47
release=1
2020-04-01 23:49:35 +02:00
source=(https://www.gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
2021-01-27 12:58:08 +01:00
cd $name-$version
2008-02-01 17:46:30 +01:00
2021-01-27 12:58:08 +01:00
./configure \
--prefix=/usr \
--disable-nls \
--enable-static \
--enable-install-gpg-error-config
2021-01-27 12:58:08 +01:00
make
make DESTDIR=$PKG install
2021-01-27 12:58:08 +01:00
rm -r $PKG/usr/share/info/
2006-02-23 16:26:10 +01:00
}