wok view aescrypt/receipt @ rev 23194

updated mpv (0.29.1 -> 0.32.0)
author Hans-G?nter Theisgen
date Fri Mar 20 15:35:35 2020 +0100 (2020-03-20)
parents 7754bc3d70de
children 3105f866bc3e
line source
1 # SliTaz package receipt.
3 PACKAGE="aescrypt"
4 VERSION="3.14"
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 }