wok view bcrypt/receipt @ rev 4530

Add ebtables
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 30 11:04:28 2009 +0100 (2009-11-30)
parents
children 4273e906522b
line source
1 # SliTaz package receipt.
3 PACKAGE="bcrypt"
4 VERSION="1.1"
5 CATEGORY="security"
6 SHORT_DESC="File encryption utility"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="zlib"
9 BUILD_DEPENDS="zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://bcrypt.sourceforge.net/"
12 WGET_URL="http://bcrypt.sourceforge.net/${TARBALL}"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make || exit 1
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $src/bcrypt $fs/usr/bin
26 }