wok view gnutls/receipt @ rev 11017

ssfs-busybox: wanted busybox
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 13 16:56:20 2011 +0200 (2011-10-13)
parents 5bbaef7b118d
children 04c8f79a99f2
line source
1 # SliTaz package receipt.
3 PACKAGE="gnutls"
4 VERSION="2.12.5"
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"
10 BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.gnu.org/software/gnutls/"
13 WGET_URL="$GNU_MIRROR/$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 }