wok view aescrypt/receipt @ rev 19264

Compress manpages (in $install/usr/share/man/...)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 00:54:49 2016 +0300 (2016-07-04)
parents 2dec6ee73d46
children 11b5e93cb5f2
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 DEPENDS="glibc-base"
10 TARBALL="${PACKAGE}-${VERSION}.tgz"
11 WEB_SITE="http://www.aescrypt.com/"
12 WGET_URL="http://www.aescrypt.com/download/v3/linux/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/src
18 make
20 mkdir -p $install/usr/share/man/man1
21 cp -a $src/man/aescrypt.1 $install/usr/share/man/man1
22 cook_compress_manpages
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $src/src/aescrypt $fs/usr/bin
30 cp -a $src/src/aescrypt_keygen $fs/usr/bin
31 }