wok view gnutls/receipt @ rev 12160

mapserver: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 17 21:29:13 2012 +0100 (2012-03-17)
parents 113cd65675c3
children 2b9f96603415
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
32 cp -a $_pkg/usr/bin $fs/usr
33 }