blob: 61770d259e81663dfb2e7de1aa1ce1c56122f6d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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.19
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-zlib \
--disable-guile
make -j1
make DESTDIR=$PKG install
rm $PKG/usr/share/info/dir
}
|