aboutsummaryrefslogtreecommitdiffstats
path: root/community/ubridge/APKBUILD
blob: 11de2157cb9c49fcc4b59982fe5ce306daa7f08d (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
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=ubridge
pkgver=0.9.16
pkgrel=0
pkgdesc="Bridge for UDP tunnels, Ethernet, TAP and VMnet interfaces."
url="https://github.com/GNS3/ubridge"
arch="all"
license="GPL-3.0"
makedepends="libpcap-dev linux-headers"
subpackages="$pkgname-doc"
install="$pkgname.post-install $pkgname.post-upgrade"
source="$pkgname-$pkgver.tar.gz::https://github.com/GNS3/$pkgname/archive/v$pkgver.tar.gz
	musl-fixes.patch"

builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	make
}

check() {
	cd "$builddir"
	./ubridge -h > /dev/null
}

package() {
	cd "$builddir"
	install -Dm755 $srcdir/$pkgname-$pkgver/$pkgname $pkgdir/usr/bin/$pkgname
	install -dm755 $pkgdir/usr/share/doc/$pkgname
	install -m644 $srcdir/$pkgname-$pkgver/README.rst -t $pkgdir/usr/share/doc/$pkgname
	install -Dm644 $srcdir/$pkgname-$pkgver/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}

sha512sums="409b5705e178d0edda17f5a321bc28a4a03d417c59893228e022a88025a51e4d4f9a18e548ec71f1b36df24b204cfdf73bc2efb8fe9e39893d29c16b3695380c  ubridge-0.9.16.tar.gz
6922022e18e85ee7d2cb244ebde8beee307a216953da804cc495d691980818f0401528157a8b14cfed0fb85bab2b18c78f230d4b94941de47861bd40eaccd3a3  musl-fixes.patch"