# HG changeset patch # User Eric Joseph-Alexandre # Date 1255529467 0 # Node ID 9bd65835e8d1f4ed28d84029b7df7663dcab28e0 # Parent e2dfaec409132d168c7b3d59f6a57c3b51dc2a6c Add: bcrypt diff -r e2dfaec40913 -r 9bd65835e8d1 bcrypt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bcrypt/receipt Wed Oct 14 14:11:07 2009 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="bcrypt" +VERSION="1.1" +CATEGORY="security" +SHORT_DESC="File encryption utility" +MAINTAINER="erjo@slitaz.org" +DEPENDS="zlib" +BUILD_DEPENDS="zlib-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://bcrypt.sourceforge.net/" +WGET_URL="http://bcrypt.sourceforge.net/${TARBALL}" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make || exit 1 +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/bcrypt $fs/usr/bin +} +