wok view beecrypt/receipt @ rev 1476

Up sudo (1.6.9p17)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 04 13:10:07 2008 +0000 (2008-10-04)
parents
children 3f898e9b90bd
line source
1 # SliTaz package receipt.
3 PACKAGE="beecrypt"
4 VERSION="4.1.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Cryptography Library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://beecrypt.sourceforge.net/"
12 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
13 http://mesh.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
14 http://garr.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib $fs/usr
30 # Deleting unnecessary file
31 find $fs/ -name "*.*a" -exec rm -f {} \;
32 }