2016-03-28 14:29:05 +11:00
|
|
|
# Description: A small library defining error values for GnuPG components
|
|
|
|
# URL: http://www.gnupg.org/
|
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
|
|
# Depends on: libgpg-error
|
|
|
|
|
|
|
|
name=libgpg-error-32
|
2017-01-25 12:44:06 +11:00
|
|
|
version=1.26
|
2016-03-28 14:29:05 +11:00
|
|
|
release=1
|
2016-12-12 19:24:11 +11:00
|
|
|
source=(https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-$version.tar.bz2)
|
2016-03-28 14:29:05 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd libgpg-error-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-static
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/{share,bin,include}
|
|
|
|
}
|