wok annotate bcrypt/receipt @ rev 4423

Add clutter (UI tool kit) with cairo and gtk bindings
author Christophe Lincoln <pankso@slitaz.org>
date Sun Oct 25 17:31:52 2009 +0100 (2009-10-25)
parents
children 4273e906522b
rev   line source
erjo@4383 1 # SliTaz package receipt.
erjo@4383 2
erjo@4383 3 PACKAGE="bcrypt"
erjo@4383 4 VERSION="1.1"
erjo@4383 5 CATEGORY="security"
erjo@4383 6 SHORT_DESC="File encryption utility"
erjo@4383 7 MAINTAINER="erjo@slitaz.org"
erjo@4383 8 DEPENDS="zlib"
erjo@4383 9 BUILD_DEPENDS="zlib-dev"
erjo@4383 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@4383 11 WEB_SITE="http://bcrypt.sourceforge.net/"
erjo@4383 12 WGET_URL="http://bcrypt.sourceforge.net/${TARBALL}"
erjo@4383 13
erjo@4383 14 # Rules to configure and make the package.
erjo@4383 15 compile_rules()
erjo@4383 16 {
erjo@4383 17 cd $src
erjo@4383 18 make || exit 1
erjo@4383 19 }
erjo@4383 20
erjo@4383 21 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4383 22 genpkg_rules()
erjo@4383 23 {
erjo@4383 24 mkdir -p $fs/usr/bin
erjo@4383 25 cp -a $src/bcrypt $fs/usr/bin
erjo@4383 26 }
erjo@4383 27