2013-07-25 00:50:53 +10: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
|
2017-07-15 20:14:32 +10:00
|
|
|
version=3.5.14
|
2013-07-25 00:50:53 +10:00
|
|
|
release=1
|
2017-07-15 20:14:32 +10:00
|
|
|
source=(https://www.gnupg.org/ftp/gcrypt/${name%-*}/v${version%.*}/${name%-*}-$version.tar.xz)
|
2013-07-25 00:50:53 +10:00
|
|
|
|
|
|
|
build() {
|
2017-07-15 20:14:32 +10:00
|
|
|
cd ${name%-*}-$version
|
2013-07-25 00:50:53 +10:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--host=i686-pc-linux-gnu \
|
|
|
|
--without-p11-kit \
|
2015-05-05 21:53:16 +10:00
|
|
|
--with-included-libtasn1 \
|
2017-07-15 20:14:32 +10:00
|
|
|
--with-included-unistring \
|
2013-07-25 00:50:53 +10:00
|
|
|
--disable-guile
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2016-03-08 20:39:50 +11:00
|
|
|
rm -r \
|
2017-07-15 20:14:32 +10:00
|
|
|
$PKG/usr/share/{doc,info,locale,man} \
|
2016-03-08 20:39:50 +11:00
|
|
|
$PKG/usr/{bin,include,share}
|
2013-07-25 00:50:53 +10:00
|
|
|
}
|