blob: 930f7bc20764d74bcbb9ec5b1e5f49a343519049 (
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
33
34
35
36
37
38
39
40
41
|
# Maintainer: Sebastian Lau <archlinux _at_ slau _dot_ info>
# Maintainer: Eric Ozwigh <ozwigh at gmail dot com>
pkgname=veracrypt
_pkgname=VeraCrypt
pkgver=1.15
_pkgver=${pkgver//_/-}
pkgrel=1
pkgdesc="Disk encryption with strong security based on TrueCrypt"
arch=('i686' 'x86_64' 'armv6h')
url="http://veracrypt.codeplex.com/"
license=('custom')
depends=('fuse' 'wxgtk>=3.0.0' 'libsm' 'device-mapper')
makedepends=('nasm')
install='veracrypt.install'
source=("https://github.com/${pkgname}/${_pkgname}/archive/${_pkgname}_${pkgver}.tar.gz"
"no_makeself.patch"
"veracrypt.desktop"
"veracrypt.install")
sha1sums=('270af81c4eafbb13f6b65e292b1f2b12af16aafc'
'0cbe9f7875ab52be125cc575533f76fab60314a5'
'ebdd450e719fe3cff5e459f027856cbaf03db13a'
'14dceabf658a7e3505c855c2862aa86e343fcda5')
build() {
cd ${srcdir}/${_pkgname}-${_pkgname}_${pkgver}/src
msg2 "Applying patch..."
patch -Np1 -i ../../no_makeself.patch # disable sfx archive
# build
export WX_CONFIG=/usr/bin/wx-config
make LFLAGS+="-ldl"
}
package() {
cd ${srcdir}/${_pkgname}-${_pkgname}_${pkgver}/src
install -D -m755 Main/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
install -D -m644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
install -D -m644 Resources/Icons/VeraCrypt-48x48.xpm "${pkgdir}/usr/share/pixmaps/veracrypt.xpm"
install -D -m644 License.txt "${pkgdir}/usr/share/licenses/${pkgname}/License.txt"
}
|