wok view gnutls/receipt @ rev 11291

firefox-langpack-*: Fixed all $TARBALL to be saved as $PACKAGE-$VERSION.zip. This is so it doesn't use the older $LANG.xpi files on tank.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Nov 11 07:15:49 2011 +0000 (2011-11-11)
parents 04c8f79a99f2
children 488b41a1ae86
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 DEPENDS="libgcrypt libgpg-error ncurses readline zlib gcc-lib-base libgnutls \
9 libtasn1 nettle gmp"
10 BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev nettle-dev gmp-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WEB_SITE="http://www.gnu.org/software/gnutls/"
13 WGET_URL="http://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --with-libgcrypt \
20 --disable-guile \
21 --with-zlib \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 }