wok view bcrypt/receipt @ rev 9663

pcre: clean-up receipt
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 01 09:13:52 2011 +0200 (2011-05-01)
parents 4273e906522b
children eb8067417980
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}"
13 TAGS="encrypt"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/bcrypt $fs/usr/bin
27 }