# HG changeset patch # User Hans-G?nter Theisgen # Date 1655703560 -3600 # Node ID 40a4a587479d18332ce31555e50401f5d0416a1d # Parent 7852b6f8ec5f76e72b081fd0a687882f44e61b15 updated veracrypt (1.24-Update7 -> 1.25.9) diff -r 7852b6f8ec5f -r 40a4a587479d veracrypt/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/veracrypt/description.txt Mon Jun 20 06:39:20 2022 +0100 @@ -0,0 +1,17 @@ +VeraCrypt is a free open source disk encryption software for Windows, +Mac OSX and Linux. +Brought to you by IDRIX (https://www.idrix.fr) and based on TrueCrypt 7.1a. + +VeraCrypt main features: +* Creates a virtual encrypted disk within a file and mounts it as + a real disk. +* Encrypts an entire partition or storage device such as USB flash drive + or hard drive. +* Encrypts a partition or drive where Windows is installed + (pre-boot authentication). +* Encryption is automatic, real-time(on-the-fly) and transparent. +* Parallelisation and pipelining allow data to be read and written as fast + as if the drive was not encrypted. +* Encryption can be hardware-accelerated on modern processors. +* Provides plausible deniability, in case an adversary forces you to reveal + the password: Hidden volume (steganography) and hidden operating system. diff -r 7852b6f8ec5f -r 40a4a587479d veracrypt/receipt --- a/veracrypt/receipt Sun Jun 19 17:25:42 2022 +0100 +++ b/veracrypt/receipt Mon Jun 20 06:39:20 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="veracrypt" -VERSION="1.24-Update7" +VERSION="1.25.9" CATEGORY="security" -SHORT_DESC="disk encryption software based on TrueCrypt 7.1a" +SHORT_DESC="Disk encryption software based on TrueCrypt 7.1a." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="Apache" +WEB_SITE="https://www.veracrypt.fr/en/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://www.veracrypt.fr/en/" -WGET_URL="https://github.com/veracrypt/VeraCrypt/archive/refs/tags/VeraCrypt_$VERSION.tar.gz" +WGET_URL="https://veracrypt.fr/code/VeraCrypt/snapshot/VeraCrypt_$VERSION.tar.gz" -DEPENDS="wxWidgets fuse2" -BUILD_DEPENDS="yasm pkg-config wxWidgets-dev fuse2-dev" +DEPENDS="fuse2 wxWidgets" +BUILD_DEPENDS="fuse2-dev pkg-config wxWidgets-dev yasm" current_version() { @@ -24,14 +25,16 @@ { cd src && make ARCH=i686 && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin $fs/usr/share - cp -a $install/usr/bin/veracrypt $fs/usr/bin - cp -a $install/usr/share/applications $fs/usr/share - cp -a $install/usr/share/pixmaps $fs/usr/share + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/share + + cp -a $install/usr/bin/veracrypt $fs/usr/bin + cp -a $install/usr/share/applications $fs/usr/share + cp -a $install/usr/share/pixmaps $fs/usr/share }