wok-6.x rev 25099
updated veracrypt (1.24-Update7 -> 1.25.9)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jun 20 06:39:20 2022 +0100 (2022-06-20) |
parents | 7852b6f8ec5f |
children | 429ffdcd660a |
files | veracrypt/description.txt veracrypt/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/veracrypt/description.txt Mon Jun 20 06:39:20 2022 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +VeraCrypt is a free open source disk encryption software for Windows, 1.5 +Mac OSX and Linux. 1.6 +Brought to you by IDRIX (https://www.idrix.fr) and based on TrueCrypt 7.1a. 1.7 + 1.8 +VeraCrypt main features: 1.9 +* Creates a virtual encrypted disk within a file and mounts it as 1.10 + a real disk. 1.11 +* Encrypts an entire partition or storage device such as USB flash drive 1.12 + or hard drive. 1.13 +* Encrypts a partition or drive where Windows is installed 1.14 + (pre-boot authentication). 1.15 +* Encryption is automatic, real-time(on-the-fly) and transparent. 1.16 +* Parallelisation and pipelining allow data to be read and written as fast 1.17 + as if the drive was not encrypted. 1.18 +* Encryption can be hardware-accelerated on modern processors. 1.19 +* Provides plausible deniability, in case an adversary forces you to reveal 1.20 + the password: Hidden volume (steganography) and hidden operating system.
2.1 --- a/veracrypt/receipt Sun Jun 19 17:25:42 2022 +0100 2.2 +++ b/veracrypt/receipt Mon Jun 20 06:39:20 2022 +0100 2.3 @@ -1,17 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="veracrypt" 2.7 -VERSION="1.24-Update7" 2.8 +VERSION="1.25.9" 2.9 CATEGORY="security" 2.10 -SHORT_DESC="disk encryption software based on TrueCrypt 7.1a" 2.11 +SHORT_DESC="Disk encryption software based on TrueCrypt 7.1a." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="Apache" 2.14 +WEB_SITE="https://www.veracrypt.fr/en/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://www.veracrypt.fr/en/" 2.18 -WGET_URL="https://github.com/veracrypt/VeraCrypt/archive/refs/tags/VeraCrypt_$VERSION.tar.gz" 2.19 +WGET_URL="https://veracrypt.fr/code/VeraCrypt/snapshot/VeraCrypt_$VERSION.tar.gz" 2.20 2.21 -DEPENDS="wxWidgets fuse2" 2.22 -BUILD_DEPENDS="yasm pkg-config wxWidgets-dev fuse2-dev" 2.23 +DEPENDS="fuse2 wxWidgets" 2.24 +BUILD_DEPENDS="fuse2-dev pkg-config wxWidgets-dev yasm" 2.25 2.26 current_version() 2.27 { 2.28 @@ -24,14 +25,16 @@ 2.29 { 2.30 cd src && 2.31 make ARCH=i686 && 2.32 - make DESTDIR=$DESTDIR install 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr/bin $fs/usr/share 2.40 - cp -a $install/usr/bin/veracrypt $fs/usr/bin 2.41 - cp -a $install/usr/share/applications $fs/usr/share 2.42 - cp -a $install/usr/share/pixmaps $fs/usr/share 2.43 + mkdir -p $fs/usr/bin 2.44 + mkdir -p $fs/usr/share 2.45 + 2.46 + cp -a $install/usr/bin/veracrypt $fs/usr/bin 2.47 + cp -a $install/usr/share/applications $fs/usr/share 2.48 + cp -a $install/usr/share/pixmaps $fs/usr/share 2.49 }