compat-32/libgpg-error-32/Pkgfile

25 lines
525 B
Plaintext
Raw Normal View History

2016-03-28 05:29:05 +02:00
# Description: A small library defining error values for GnuPG components
2017-03-14 03:58:51 +01:00
# URL: https://www.gnupg.org/
2016-03-28 05:29:05 +02:00
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: libgpg-error
name=libgpg-error-32
2024-06-22 02:14:14 +02:00
version=1.50
2016-03-28 05:29:05 +02:00
release=1
2020-04-07 04:48:45 +02:00
source=(https://www.gnupg.org/ftp/gcrypt/${name%-*}/${name%-*}-$version.tar.bz2)
2016-03-28 05:29:05 +02:00
build() {
2017-03-14 03:58:51 +01:00
cd ${name%-*}-$version
2016-03-28 05:29:05 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--disable-nls \
--enable-static
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{share,bin,include}
}