wok view aescrypt/receipt @ rev 21600
Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author | maniac |
---|---|
date | Thu May 23 12:16:28 2019 +0300 (2019-05-23) |
parents | 11b5e93cb5f2 |
children | 5129bb14f627 |
line source
1 # SliTaz package receipt.
3 PACKAGE="aescrypt"
4 VERSION="3.13"
5 CATEGORY="security"
6 SHORT_DESC="AES Crypt is a file encryption software."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="PublicDomain"
9 WEB_SITE="https://www.aescrypt.com/"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WGET_URL="${WEB_SITE}download/v3/linux/$TARBALL"
13 DEPENDS="glibc-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/src
19 make
21 cook_pick_manpages $src/man/aescrypt.1
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/src/aescrypt $fs/usr/bin
29 cp -a $src/src/aescrypt_keygen $fs/usr/bin
30 }