wok annotate aescrypt/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents a6dc729f9f8d
children 45507bfb2b0d
rev   line source
slaxemulator@7444 1 # SliTaz package receipt.
slaxemulator@7444 2
slaxemulator@7444 3 PACKAGE="aescrypt"
erkan@18719 4 VERSION="3.10"
slaxemulator@7444 5 CATEGORY="security"
slaxemulator@7444 6 SHORT_DESC="AES Crypt is a file encryption software."
slaxemulator@7444 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15201 8 LICENSE="PublicDomain"
slaxemulator@7444 9 DEPENDS="glibc-base"
erkan@18719 10 TARBALL="${PACKAGE}-${VERSION}.tgz"
slaxemulator@7444 11 WEB_SITE="http://www.aescrypt.com/"
erkan@18719 12 WGET_URL="http://www.aescrypt.com/download/v3/linux/$TARBALL"
slaxemulator@7444 13
slaxemulator@7444 14 # Rules to configure and make the package.
slaxemulator@7444 15 compile_rules()
slaxemulator@7444 16 {
erkan@18720 17 cd $src/src
slaxemulator@7444 18 make
slaxemulator@7444 19 }
slaxemulator@7444 20
slaxemulator@7444 21 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7444 22 genpkg_rules()
slaxemulator@7444 23 {
slaxemulator@7444 24 mkdir -p $fs/usr/bin
erkan@18721 25 cp -a $src/src/aescrypt $fs/usr/bin
erkan@18721 26 cp -a $src/src/aescrypt_keygen $fs/usr/bin
slaxemulator@7444 27 }
slaxemulator@7444 28