wok-next diff beecrypt/receipt @ rev 1501

Up dhcp (4.1.0a2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 13:24:16 2008 +0000 (2008-10-05)
parents
children 3f898e9b90bd
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/beecrypt/receipt	Sun Oct 05 13:24:16 2008 +0000
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="beecrypt"
     1.7 +VERSION="4.1.2"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Cryptography Library"
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +DEPENDS=""
    1.12 +BUILD_DEPENDS="python-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://beecrypt.sourceforge.net/"
    1.15 +WGET_URL="http://switch.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
    1.16 + http://mesh.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
    1.17 + http://garr.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	./configure --prefix=/usr $CONFIGURE_ARGS
    1.24 +	make
    1.25 +	make DESTDIR=$PWD/_pkg install
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	mkdir -p $fs/usr/lib
    1.32 +	cp -a $_pkg/usr/lib $fs/usr
    1.33 +	# Deleting unnecessary file
    1.34 +	find $fs/ -name "*.*a" -exec rm -f {} \;
    1.35 +}
    1.36 +