summaryrefslogtreecommitdiffstats
path: root/gnutls/Pkgfile
blob: 8a088634f63acc6b030be8c23617450f3048cbad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Description:  Librairie fournissant une couche de securite aux dessus d'une couche de transport
# URL: http://www.gnu.org/software/gnutls/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libgcrypt, lzo, libtasn1, nettle, p11-kit
# Run on: libgcrypt,lzo,libtasn1,nettle,p11-kit

name=gnutls
version=3.0.12
release=1
source=(ftp://ftp.gnutls.org/pub/$name/$name-$version.tar.xz
	fix-parallel-build.patch)

build() {
	unset MAKEFLAGS
	cd $name-$version
	patch -p1 < ../fix-parallel-build.patch
	./configure --prefix=/usr \
		--with-zlib \
		--disable-guile
	make -j1
	make DESTDIR=$PKG install
	rm $PKG/usr/share/info/dir
}