summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88c913409bd0654d4a3858290608de6786b35d5e (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
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
# Maintainer: Leonard Janis Robert König <ljrk at ljrk dot org>
pkgname=hide-client
_pkgname=hide.client.linux
pkgver=0.9.1
pkgrel=2
epoch=
pkgdesc="Hide.me CLI VPN client for Linux"
arch=('any')
url="hide.me"
license=('GPL2')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
#XXX go.sum is created by `go mod tidy` as a workaround for repo not containing
#    a go.sum file, which is required for go 1.16 compatibility.
source=("https://github.com/eventure/$_pkgname/archive/$pkgver.zip"
        "go.sum"
        "config_sysdirs.patch"
        "service_sysdirs.patch")
noextract=()
md5sums=('9346e79e8e1c98b5457a03e02febca9c'
         '811aa82780b7f9c986048325dab17372'
         '07d59ac194c4aa8ee0de284283796461'
         'b2cee66ea77a0d76460131144d0a16b0')
validpgpkeys=()

prepare() {
	cd "$_pkgname-$pkgver"
	patch -p1 -i "$srcdir/config_sysdirs.patch"
	patch -p1 -i "$srcdir/service_sysdirs.patch"
}

build() {
	cd "$_pkgname-$pkgver"
	export CGO_CPPFLAGS="${CPPFLAGS}"
	export CGO_CFLAGS="${CFLAGS}"
	export CGO_CXXFLAGS="${CXXFLAGS}"
	export CGO_LDFLAGS="${LDFLAGS}"
	# readonly breaks build
#	export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
	export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -modcacherw"
	go build -o hide.me .
}

#check() {
#	cd "$_pkgname-$pkgver"
#	go test .
#}

package() {
	cd "$_pkgname-$pkgver"
	install -Dm755 -t "$pkgdir"/usr/bin/ hide.me
	install -Dm644 -t "$pkgdir"/usr/share/hide.me/ CA.pem
	# For (system-wide) accessToken.txt
	install -dm750 "$pkgdir"/etc/hide.me/
	install -Dm644 -t "$pkgdir"/usr/lib/systemd/system/ hide.me@.service
}