compat-32/gnutls-32/Pkgfile

30 lines
694 B
Plaintext
Raw Normal View History

2013-07-24 16:50:53 +02:00
# Description: A library that provides a secure layer over a reliable transport layer
# URL: http://gnutls.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: nettle-32 libidn-32 gnutls
name=gnutls-32
version=3.5.14
2013-07-24 16:50:53 +02:00
release=1
source=(https://www.gnupg.org/ftp/gcrypt/${name%-*}/v${version%.*}/${name%-*}-$version.tar.xz)
2013-07-24 16:50:53 +02:00
build() {
cd ${name%-*}-$version
2013-07-24 16:50:53 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--host=i686-pc-linux-gnu \
--without-p11-kit \
2015-05-05 13:53:16 +02:00
--with-included-libtasn1 \
--with-included-unistring \
2013-07-24 16:50:53 +02:00
--disable-guile
make
make DESTDIR=$PKG install
2016-03-08 10:39:50 +01:00
rm -r \
$PKG/usr/share/{doc,info,locale,man} \
2016-03-08 10:39:50 +01:00
$PKG/usr/{bin,include,share}
2013-07-24 16:50:53 +02:00
}