aboutsummaryrefslogtreecommitdiffstats
path: root/community/gns3-server/APKBUILD
blob: 3ec5691488036c98fcca8756c0f7f1c606808633 (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
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=gns3-server
pkgver=2.2.7
pkgrel=0
pkgdesc="GNS3 network simulator. Server package."
url="https://github.com/GNS3/gns3-server"
arch="all !mips !mips64" # blocked by py3-py-cpuinfo
license="GPL-3.0-or-later"
depends="busybox dynamips python3
	py3-aiohttp-gns3 py3-aiohttp-cors-gns3
	py3-async-timeout-gns3 py3-jsonschema-gns3
	py3-pytest py3-raven
	py3-psutil-gns3 py3-jinja2
	py3-async_generator py3-aiofiles
	py3-distro py3-py-cpuinfo
	"
makedepends="busybox-static py3-setuptools python3-dev linux-headers"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/GNS3/gns3-server/archive/v$pkgver.tar.gz
	requirements.patch"

build() {
	# Upstream includes busybox binary for x86_64. We want to replace it by
	# $CARCH binary
	if [ "$CARCH" != "x86_64" ] ; then
		busybox_bin=$(find . -name busybox -type f)
		cp /bin/busybox.static $busybox_bin
	fi
	python3 setup.py build
}

check() {
	python3 setup.py check
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
	mkdir -p "$pkgdir"/usr/share/doc/$pkgname
	cat >"$pkgdir"/usr/share/doc/$pkgname/README.alpine <<EOF
gns3-server has several optional packages that must be installed manually for additional functionality:

	apk add qemu
	apk add wiresark
	apk add ubridge
	apk add cpulimit
	apk add iouyap
	apk add vpcs
EOF
}

sha512sums="1237b182a2e1d83d272077a6c164292fdab5c6ce458a913f4d992274ae88acf2daf39b66be636f60ac4554b00d3dfb0948042f9b02c80b95ec42558cec322af3  gns3-server-2.2.7.tar.gz
cdc09d596f0773ec7b842859f836c4363f50fac5cf954f435b1f50957da9355b47c9dece347c599797d1a32aa31a272810c8e6b906c9e07c470090769f510146  requirements.patch"