blob: e04bc7bcf7d7ed1163ab9c0398294c58af5fd62e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Shapiro <shapiro at quantentunnel dot de>
pkgname='veracrypt-inyourlanguage'
_pkgname='VeraCrypt'
pkgver=1.26.20
pkgrel=1
pkgdesc='Disk encryption with strong security based on TrueCrypt 7.1a. Supporting 40+ languages, changeable while running the program.'
url='https://www.veracrypt.fr'
arch=('x86_64' 'i686' 'arm64' 'armhf' 'aarch64')
license=('custom')
provides=('veracrypt')
conflicts=('veracrypt' 'veracrypt-console-bin' 'veracrypt-git' 'veracrypt-trans')
depends=('device-mapper' 'fuse2' 'wxwidgets-gtk3')
makedepends=('pcsclite' 'yasm')
source=(https://launchpad.net/veracrypt/trunk/${pkgver}/+download/${_pkgname}_${pkgver}_Source.tar.bz2)
sha512sums=('6382d4a34aae537c87088429c17f7cb397d0f23bd3c8e5497f302799255b93d1eb2a40284222d23b44ac37934e9a2ab056199892aa9e6b826da57a07aa09eaa0')
build() {
cd src
make PKG_CONFIG_PATH=/usr/lib/pkgconfig WX_CONFIG=/usr/bin/wx-config
}
package() {
cd src
make DESTDIR="${pkgdir}/" install
install -Dm 644 License.txt -t "${pkgdir}/usr/share/licenses/${_pkgname}"
echo "Installing language files..."
install -d "${pkgdir}/usr/share/veracrypt/languages"
install -Dm 644 ../Translations/* "${pkgdir}/usr/share/veracrypt/languages/"
rm -r "${pkgdir}/usr/sbin"
rm -r "${pkgdir}/usr/share/doc"
}
|