aboutsummaryrefslogtreecommitdiffstats
path: root/community/ubridge/APKBUILD
blob: 0652113a11ba3d6bddb267b68eeb9e50874c9409 (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.15
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="8298cde5930d41042662500de3d9d7268e9a4bb347b779e1881125dbb4d29c9f288d4d3e84048fbb2ed92f4441d8df13cd68bd53dbbbc5d6c9858200aea42808  ubridge-0.9.15.tar.gz
6922022e18e85ee7d2cb244ebde8beee307a216953da804cc495d691980818f0401528157a8b14cfed0fb85bab2b18c78f230d4b94941de47861bd40eaccd3a3  musl-fixes.patch"