blob: 7b47bc89064a85b0bb1d779290e08553197dece0 (
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
|
# Maintainer: willemw <willemw12@gmail.com>
# Contributor: Robin Broda <coderobe @ archlinux.org>
pkgname=nebula-git
pkgver=1.4.0.r2.gc726d20
pkgrel=1
pkgdesc='A scalable overlay networking tool with a focus on performance, simplicity and security'
arch=('x86_64')
url='https://github.com/slackhq/nebula'
license=('MIT')
makedepends=('git' 'go')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("$pkgname::git+$url.git")
sha256sums=('SKIP')
pkgver() {
git -C $pkgname describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
sed -i -e "s|/usr/local/bin|/usr/bin|g" $pkgname/examples/service_scripts/nebula.service
}
build() {
cd $pkgname
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
# Keep downloaded dependencies inside srcdir
export GOPATH="$srcdir/build"
mkdir -p "$GOPATH"
go mod vendor
for cmd in nebula{,-cert,-service}; do
go build -ldflags "-X main.Build=$pkgver" -o $cmd ./cmd/$cmd
done
}
check() {
cd $pkgname
go test -v ./...
}
package() {
cd $pkgname
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/${pkgname%-git}"
install -Dm644 examples/config.yml "$pkgdir/etc/nebula/config.yml.example"
#install -Dm644 dist/arch/nebula.service -t "$pkgdir/usr/lib/systemd/system"
install -Dm644 examples/service_scripts/nebula.service -t "$pkgdir/usr/lib/systemd/system"
for cmd in nebula{,-cert,-service}; do
install -Dm755 $cmd -t "$pkgdir/usr/bin"
done
}
|