wok rev 1433

Add: beecrypt and beecrypt-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Oct 01 00:01:24 2008 +0200 (2008-10-01)
parents 5e22c8b65fc5
children b38a3f04facb
files beecrypt-dev/receipt beecrypt/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/beecrypt-dev/receipt	Wed Oct 01 00:01:24 2008 +0200
     1.3 @@ -0,0 +1,24 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="beecrypt-dev"
     1.7 +VERSION="4.1.2"
     1.8 +CATEGORY="developement"
     1.9 +SHORT_DESC="Cryptography Library dev files"
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +DEPENDS=""
    1.12 +BUILD_DEPENDS=""
    1.13 +WANTED="beecrypt"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WEB_SITE="http://beecrypt.sourceforge.net/"
    1.16 +
    1.17 +
    1.18 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.19 +genpkg_rules()
    1.20 +{
    1.21 +	mkdir -p $fs/usr/lib
    1.22 +	cp -a $_pkg/usr/include $fs/usr
    1.23 +	cp -a $_pkg/usr/lib $fs/usr
    1.24 +	# Deleting unnecessary file
    1.25 +	find $fs/ -name "*.so*" -exec rm -f {} \;
    1.26 +}
    1.27 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/beecrypt/receipt	Wed Oct 01 00:01:24 2008 +0200
     2.3 @@ -0,0 +1,33 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="beecrypt"
     2.7 +VERSION="4.1.2"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="Cryptography Library"
    2.10 +MAINTAINER="erjo@slitaz.org"
    2.11 +DEPENDS=""
    2.12 +BUILD_DEPENDS="python-dev"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14 +WEB_SITE="http://beecrypt.sourceforge.net/"
    2.15 +WGET_URL="http://switch.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
    2.16 + http://mesh.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
    2.17 + http://garr.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	cd $src
    2.23 +	./configure --prefix=/usr $CONFIGURE_ARGS
    2.24 +	make
    2.25 +	make DESTDIR=$PWD/_pkg install
    2.26 +}
    2.27 +
    2.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.29 +genpkg_rules()
    2.30 +{
    2.31 +	mkdir -p $fs/usr/lib
    2.32 +	cp -a $_pkg/usr/lib $fs/usr
    2.33 +	# Deleting unnecessary file
    2.34 +	find $fs/ -name "*.*a" -exec rm -f {} \;
    2.35 +}
    2.36 +