wok view beecrypt/receipt @ rev 2453

nss_ldap: enable-paged-results
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 13 16:15:38 2009 +0000 (2009-03-13)
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 }