wok view gnutls/receipt @ rev 15839

Up: flac to 1.3.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 27 05:38:38 2014 +0000 (2014-01-27)
parents 9532fd8edd29
children 64b542b0abad
line source
1 # SliTaz package receipt.
3 PACKAGE="gnutls"
4 VERSION="2.12.14"
5 CATEGORY="security"
6 SHORT_DESC="GNU Transport Layer Security Library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnu.org/software/gnutls/"
11 WGET_URL="http://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
13 DEPENDS="nettle libgpg-error ncurses readline zlib gcc-lib-base libgnutls \
14 libtasn1 p11-kit"
15 BUILD_DEPENDS="libtasn1-dev ncurses-dev readline-dev p11-kit-dev \
16 nettle-dev libgpg-error-dev libgcrypt-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure --with-libgcrypt \
23 --disable-guile \
24 --with-zlib \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }