wok view truecrypt/receipt @ rev 15849

Up: truecrypt to 7.1a.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 27 07:30:42 2014 +0000 (2014-01-27)
parents 23c3aed67cd9
children 851490d19c0d
line source
1 # SliTaz package receipt.
3 PACKAGE="truecrypt"
4 VERSION="7.1a"
5 CATEGORY="security"
6 SHORT_DESC="Free open-source cross-platform disk encryption software"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="other"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.truecrypt.org"
11 WGET_URL="ftp://ftp.archlinux.org/other/tc/$TARBALL"
13 DEPENDS="fuse wxWidgets xorg-libSM dmsetup linux-md"
14 BUILD_DEPENDS="pkcs nasm fuse-dev wxWidgets-dev xorg-libSM-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export PKCS11_INC="/usr/include/pkcs"
20 cd $src
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin \
28 $fs/usr/share/applications \
29 $fs/usr/share/pixmaps \
30 $fs/usr/share/licenses/$PACKAGE
31 cp -a $src/Main/$PACKAGE $fs/usr/bin
32 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
33 cp -a $src/Resources/Icons/TrueCrypt-48x48.xpm $fs/usr/share/pixmaps/truecrypt.xpm
35 cp -a $src/License.txt $fs/usr/share/licenses/$PACKAGE/License.txt
36 }