wok view beecrypt/receipt @ rev 5044

improve kernel version in bootchart grub entry (thanks allan)
author Rohit Joshi <jozee@slitaz.org>
date Thu Mar 04 11:38:39 2010 +0000 (2010-03-04)
parents 4ffc7c76d358
children 0169e132cc40
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="gcc-lib-base"
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"
13 TAGS="cryptography toolkit"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --without-cplusplus $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib $fs/usr
29 # Deleting unnecessary file
30 find $fs/ -name "*.*a" -exec rm -f {} \;
31 }