33 lines
973 B
Bash
33 lines
973 B
Bash
|
# Template file for 'Veracrypt'
|
||
|
pkgname=VeraCrypt
|
||
|
version=1.21
|
||
|
revision=1
|
||
|
create_wrksrc=1
|
||
|
build_wrksrc="src"
|
||
|
build_style=gnu-makefile
|
||
|
make_use_env=1
|
||
|
hostmakedepends="yasm pkg-config"
|
||
|
makedepends="wxWidgets-devel fuse-devel"
|
||
|
short_desc="Disk encryption with strong security based on TrueCrypt"
|
||
|
maintainer="Gustavo Heinz <gustavoheinz95@gmail.com>"
|
||
|
license="Apache 2.0, TrueCrypt 3.0"
|
||
|
homepage="https://www.veracrypt.fr"
|
||
|
distfiles="https://launchpad.net/veracrypt/trunk/${version}/+download/${pkgname}_${version}_Source.tar.bz2"
|
||
|
checksum="44717d24b8deff2db9dd0365572063e38bbe4a59438a8c3c07675b5eed370358"
|
||
|
|
||
|
case "$XBPS_TARGET_MACHINE" in
|
||
|
i686*|x86_64*) ;;
|
||
|
*) make_build_args+=' NOASM=1' ;;
|
||
|
esac
|
||
|
|
||
|
if [ -n "$CROSS_BUILD" ]; then
|
||
|
make_build_args+=' NOTEST=1'
|
||
|
fi
|
||
|
|
||
|
do_install() {
|
||
|
vbin Main/veracrypt
|
||
|
vlicense License.txt
|
||
|
vinstall Setup/Linux/veracrypt.desktop 644 usr/share/applications/
|
||
|
vinstall Resources/Icons/VeraCrypt-256x256.xpm 644 usr/share/pixmaps/ veracrypt.xpm
|
||
|
}
|