wok annotate gnutls/receipt @ rev 1861

Add: tcl6.5*, tk8.5*.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Dec 16 00:20:30 2008 +0100 (2008-12-16)
parents ea026380981e
children dbf873bf74a8
rev   line source
erjo@180 1 # SliTaz package receipt.
erjo@180 2
erjo@180 3 PACKAGE="gnutls"
pascal@1494 4 VERSION="2.4.2"
erjo@180 5 CATEGORY="security"
erjo@180 6 SHORT_DESC="GNU Transport Layer Security Library"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@180 8 DEPENDS="libgcrypt libgpg-error"
pascal@1514 9 BUILD_DEPENDS="libgcrypt libgcrypt-dev libgpg-error-dev"
erjo@180 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@180 11 WEB_SITE="http://www.gnu.org/software/gnutls/"
pascal@1494 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
erjo@180 13
erjo@180 14 # Rules to configure and make the package.
erjo@180 15 compile_rules()
erjo@180 16 {
erjo@180 17 cd $src
erjo@180 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1494 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1494 20 make &&
erjo@180 21 make DESTDIR=$PWD/_pkg install
erjo@180 22 }
erjo@180 23
erjo@180 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@180 25 genpkg_rules()
erjo@180 26 {
erjo@180 27 mkdir -p $fs/usr/share $fs/usr/lib
erjo@180 28
erjo@180 29 # Copy all bin and remove devel stuff.
erjo@180 30 cp -a $_pkg/usr/bin $fs/usr
erjo@180 31 rm $fs/usr/bin/libgnutls-*config
erjo@180 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@180 33
erjo@180 34 strip -s $fs/usr/bin/*
erjo@180 35 strip -s $fs/usr/lib/*
erjo@180 36 }
erjo@180 37