wok view bcrypt/receipt @ rev 7197

Added gtk+-dev to pygtk-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Nov 09 05:15:39 2010 +0000 (2010-11-09)
parents 9bd65835e8d1
children 0b4cf0d9e1b5
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 || exit 1
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 }