wok annotate aescrypt/receipt @ rev 8999

asterisk: fix extract-cfile.awk (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 03 15:08:41 2011 +0100 (2011-03-03)
parents f9b49701bf22
children f4c22f009037
rev   line source
slaxemulator@7444 1 # SliTaz package receipt.
slaxemulator@7444 2
slaxemulator@7444 3 PACKAGE="aescrypt"
slaxemulator@7444 4 VERSION="305"
slaxemulator@7444 5 CATEGORY="security"
slaxemulator@7444 6 SHORT_DESC="AES Crypt is a file encryption software."
slaxemulator@7444 7 MAINTAINER="slaxemulator@gmail.com"
slaxemulator@7444 8 DEPENDS="glibc-base"
slaxemulator@7444 9 TARBALL="${PACKAGE}${VERSION}_source.tar.gz"
slaxemulator@7444 10 WEB_SITE="http://www.aescrypt.com/"
slaxemulator@8478 11 WGET_URL="http://www.aescrypt.com/cgi-bin/download?file=v3/$TARBALL"
slaxemulator@7444 12
slaxemulator@7444 13 # Rules to configure and make the package.
slaxemulator@7444 14 compile_rules()
slaxemulator@7444 15 {
slaxemulator@7444 16 cd $src
slaxemulator@7444 17 make
slaxemulator@7444 18 }
slaxemulator@7444 19
slaxemulator@7444 20 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7444 21 genpkg_rules()
slaxemulator@7444 22 {
slaxemulator@7444 23 mkdir -p $fs/usr/bin
slaxemulator@7444 24 cp -a $src/aescrypt $fs/usr/bin
slaxemulator@7444 25 }
slaxemulator@7444 26