wok annotate aescrypt/receipt @ rev 16566

slitaz-configs: fix build for ARM
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 01 14:43:27 2014 +0200 (2014-05-01)
parents a5853667a4a4
children 47fd62e49acc
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"
pascal@15201 8 LICENSE="PublicDomain"
slaxemulator@7444 9 DEPENDS="glibc-base"
slaxemulator@7444 10 TARBALL="${PACKAGE}${VERSION}_source.tar.gz"
slaxemulator@7444 11 WEB_SITE="http://www.aescrypt.com/"
slaxemulator@8478 12 WGET_URL="http://www.aescrypt.com/cgi-bin/download?file=v3/$TARBALL"
slaxemulator@7444 13
slaxemulator@7444 14 # Rules to configure and make the package.
slaxemulator@7444 15 compile_rules()
slaxemulator@7444 16 {
slaxemulator@7444 17 cd $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
slaxemulator@7444 25 cp -a $src/aescrypt $fs/usr/bin
slaxemulator@7444 26 }
slaxemulator@7444 27