wok-next view aescrypt/receipt @ rev 20687

AES Crypt update: 3.10 -> 3.13 (2017)
author Erkan Yilmaz <erkan@slitaz.org>
date Mon May 21 12:20:39 2018 +0000 (2018-05-21)
parents a8e106e92cc2
children c903afcd80c3
line source
1 # SliTaz package receipt v2.
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/"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="${WEB_SITE}download/v3/linux/$TARBALL"
14 compile_rules() {
15 cd $src/src
16 make || return 1
18 install -Dm755 $src/src/aescrypt $install/usr/bin/aescrypt
19 install -Dm755 $src/src/aescrypt_keygen $install/usr/bin/aescrypt_keygen
21 cook_pick_manpages $src/man/aescrypt.1
22 }
24 genpkg_rules() {
25 copy @std
26 DEPENDS="glibc-base"
27 }