wok view beecrypt/receipt @ rev 8530

Fixed libwebkit to not need src varible folder. Moved GtkLanucher to DESTDIR/usr/bin in compile_rules so we can save 300mb on tank.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 13 01:40:21 2011 +0000 (2011-02-13)
parents 395ec8205cff
children 8d6f480bf664
line source
1 # SliTaz package receipt.
3 PACKAGE="beecrypt"
4 VERSION="4.2.1"
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 }