wok view gnutls/receipt @ rev 11303

Up: kismet (2011-08-R1)
author Alexander Medvedev <devl547@gmail.com>
date Sat Nov 12 22:29:28 2011 +0000 (2011-11-12)
parents 3865e300cac8
children 9532fd8edd29
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnu.org/software/gnutls/"
10 WGET_URL="http://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
12 DEPENDS="nettle libgpg-error ncurses readline zlib gcc-lib-base libgnutls \
13 libtasn1 p11-kit"
14 BUILD_DEPENDS="libtasn1-dev ncurses-dev readline-dev p11-kit-dev \
15 nettle-dev libgpg-error-dev libgcrypt-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --with-libgcrypt \
22 --disable-guile \
23 --with-zlib \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 }