wok diff truecrypt/receipt @ rev 10903
Add zbar
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 21 11:42:09 2011 +0200 (2011-07-21) |
parents | |
children | bb8c974d7ed8 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/truecrypt/receipt Thu Jul 21 11:42:09 2011 +0200 1.3 @@ -0,0 +1,36 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="truecrypt" 1.7 +VERSION="7.0a" 1.8 +CATEGORY="security" 1.9 +SHORT_DESC="Free open-source cross-platform disk encryption software" 1.10 +MAINTAINER="slaxemulator@gmail.com" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="htttp://www.truecrypt.org" 1.13 +WGET_URL="ftp://ftp.archlinux.org/other/tc/$TARBALL" 1.14 + 1.15 +DEPENDS="fuse wxWidgets xorg-libSM dmsetup" 1.16 +BUILD_DEPENDS="pkcs nasm fuse-dev wxWidgets-dev xorg-libSM-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + export PKCS11_INC="/usr/include/pkcs" 1.22 + cd $src 1.23 + make 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr/bin \ 1.30 + $fs/usr/share/applications \ 1.31 + $fs/usr/share/pixmaps \ 1.32 + $fs/usr/share/licenses/$PACKAGE 1.33 + cp -a $src/Main/$PACKAGE $fs/usr/bin 1.34 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 1.35 + cp -a $src/Resources/Icons/TrueCrypt-48x48.xpm $fs/usr/share/pixmaps/truecrypt.xpm 1.36 + 1.37 + cp -a $src/License.txt $fs/usr/share/licenses/$PACKAGE/License.txt 1.38 +} 1.39 +