wok view gnutls/receipt @ rev 11282

Add: transmission-remote-gtk (0.7)
author Alexander Medvedev <devl547@gmail.com>
date Thu Nov 10 23:28:52 2011 +0000 (2011-11-10)
parents ecabd74de6df
children dec5c3a2000c
line source
1 # SliTaz package receipt.
3 PACKAGE="gnutls"
4 VERSION="3.0.7"
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 }