-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
67 lines (59 loc) · 1.74 KB
/
PKGBUILD
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
pkgname=riseup-vpn
pkgrel=4
pkgver=0.21.2
_commit=7ed49b92ff19205af276dee371174579c8b4c811
pkgdesc="RiseupVPN is a branded build of Bitmask VPN. Bitmask VPN is a minimal rewrite of the Bitmask VPN Client, written in golang, that for now lacks client authentication, and is preconfigured to use a single provider."
url="https://0xacab.org/leap/bitmask-vpn"
arch=('x86_64')
license=('GPL3')
depends=(
'python'
'openvpn'
'qt5-declarative'
'qt5-quickcontrols'
'qt5-quickcontrols2'
'hicolor-icon-theme'
)
makedepends=(
'go'
'golang-golang-x-text'
'qt5-base'
'qt5-tools'
'git'
'qt-installer-framework'
'pkgconf'
'cmake'
'fakeroot'
)
source=(
"git+https://0xacab.org/leap/bitmask-vpn.git#commit=${_commit}"
"riseup-vpn_launcher.desktop"
"riseup-vpn.png"
)
sha1sums=(
'SKIP'
'17e503a9c0a119c4eb78f0eee243ffc7f85095b5'
'7cb4d92288febba7de7da27c5ee8f7d867a0b221'
)
build() {
cd "bitmask-vpn"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
make generate
go build -buildmode=c-archive -o lib/libgoshim.a gui/backend.go
PROVIDER=riseup make build
}
check() {
cd "bitmask-vpn"
make test
}
package() {
install -Dm644 riseup-vpn_launcher.desktop "${pkgdir}/usr/share/applications/riseup-vpn_launcher.desktop"
install -Dm644 riseup-vpn.png "${pkgdir}/usr/share/icons/hicolor/128x128/apps/riseup-vpn.png"
cd "bitmask-vpn"
install -Dm755 helpers/bitmask-root "${pkgdir}/usr/bin/bitmask-root"
install -Dm644 helpers/se.leap.bitmask.policy "${pkgdir}/usr/share/polkit-1/actions/se.leap.bitmask.policy"
install -Dm755 build/qt/release/riseup-vpn "${pkgdir}/usr/bin/riseup-vpn"
}