wok view beecrypt/receipt @ rev 2781

Add Xfe File manager (use Fox lib)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 27 21:12:44 2009 +0200 (2009-04-27)
parents 3f898e9b90bd
children 4ffc7c76d358
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="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --without-cplusplus $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib $fs/usr
28 # Deleting unnecessary file
29 find $fs/ -name "*.*a" -exec rm -f {} \;
30 }