blob: 5cf9543653a26503f4373852be3ff0e77cf87099 (
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
67
68
69
70
|
# Maintainer: tarball <bootctl@gmail.com>
pkgname=netbird-bin
pkgver=0.66.4
pkgrel=1
pkgdesc='WireGuard-based mesh network'
url='https://netbird.io'
arch=(i686 x86_64 aarch64 armv6h)
license=(BSD-3-Clause)
provides=(netbird wiretrustee)
conflicts=(netbird)
depends=(glibc)
optdepends=('resolvconf: Private DNS')
replaces=(wiretrustee-bin)
_base_raw="https://raw.githubusercontent.com/netbirdio/netbird/refs/tags/v$pkgver"
_base_bin="https://github.com/netbirdio/netbird/releases/download/v$pkgver/netbird_${pkgver}_linux"
source=("$_base_raw/release_files/systemd/env"
"$_base_raw/release_files/systemd/netbird@.service")
source_i686=("${_base_bin}_386.tar.gz")
source_x86_64=("${_base_bin}_amd64.tar.gz")
source_aarch64=("${_base_bin}_arm64.tar.gz")
source_armv6h=("${_base_bin}_armv6.tar.gz")
sha256sums=('7c6f8f6ec95969fc555e7abc55f7f775196446d315c5080adab4a1a6f0b173e3'
'8e8e5423a14df61b5b78daac0761ec9be5e43e60d3fcb7ffe6994e57c1f92036')
sha256sums_i686=('92ec096ddc980f9cbc4acb6266b4394ae43e34b0ab987d35257039b97064a176')
sha256sums_x86_64=('bf2aeab683f4fe240f1ee17aa14a6ef0f873e229ef10c530012c831ed25d11f1')
sha256sums_aarch64=('04825b665ca8d2f40a745f89c01c06f47e40bf5fc9cc112b822f986c52552cfd')
sha256sums_armv6h=('7264d1287f0a5272204b2fd022bb32103fb92b0673e6f3c81cb34ddb56de84dd')
prepare() {
# try to generate completions if the binary is runnable on current CPU
local shell
for shell in bash fish zsh; do
./netbird completion $shell >completion.$shell 2>/dev/null || rm -f completion.$shell
done
}
package() {
# binary
install -Dm755 netbird "$pkgdir/usr/bin/netbird"
# config directory
install -Ddm755 -o root -g root "$pkgdir/etc/netbird"
# environment file
install -Dm644 env "$pkgdir/etc/default/netbird"
# systemd unit
install -Dm644 netbird@.service \
"$pkgdir/usr/lib/systemd/system/netbird@.service"
# license
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/netbird/LICENSE"
# shell completions
if [[ -f completion.bash ]]; then
install -Dm644 completion.bash \
"$pkgdir/usr/share/bash-completion/completions/netbird"
install -Dm644 completion.fish \
"$pkgdir/usr/share/fish/vendor_completions.d/netbird.fish"
install -Dm644 completion.zsh \
"$pkgdir/usr/share/zsh/site-functions/_netbird"
fi
}
|