wok view aescrypt/receipt @ rev 20177

Add intel-microcode
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 25 03:34:29 2018 +0200 (2018-01-25)
parents 45507bfb2b0d
children 7754bc3d70de
line source
1 # SliTaz package receipt.
3 PACKAGE="aescrypt"
4 VERSION="3.10"
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 }