32 lines
971 B
Bash
32 lines
971 B
Bash
# Template file for 'Veracrypt'
|
|
pkgname=VeraCrypt
|
|
version=1.22
|
|
revision=3
|
|
create_wrksrc=1
|
|
build_wrksrc="src"
|
|
build_style=gnu-makefile
|
|
make_use_env=1
|
|
hostmakedepends="pkg-config yasm"
|
|
makedepends="fuse-devel wxWidgets-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=9e4c0cc0edda0031978ec13d81f420af55c14b4a6b06c8d448760fd06df7b870
|
|
|
|
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
|
|
}
|