35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# Template file for 'gns3-server'
|
|
pkgname=gns3-server
|
|
version=2.1.15
|
|
revision=1
|
|
build_style=python3-module
|
|
pycompile_module="gns3server"
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-setuptools python3-jsonschema python3-aiohttp-cors2 python3-yarl
|
|
python3-Jinja2 python3-raven python3-psutil python3-zipstream python3-prompt_toolkit
|
|
dynamips"
|
|
short_desc="Graphical Network Simulator 3 - Server"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://gns3.com"
|
|
distfiles="https://github.com/GNS3/gns3-server/archive/v${version}.tar.gz"
|
|
checksum=d21a13cfc19e849e97cd792e1b97cf9e32c14ccecc0b2eb3fe8fc6e4c40aa13f
|
|
|
|
pre_build() {
|
|
# relax requirements
|
|
sed -i '/typing/d' requirements.txt
|
|
sed -i 's|aiohttp-cors.*|aiohttp-cors>=0.5.3|' requirements.txt
|
|
}
|
|
post_install() {
|
|
# remove tests directory polluting site-packages
|
|
rm -rf -- ${DESTDIR}/usr/lib/python*/site-packages/tests
|
|
}
|
|
|
|
# The source archive contains statically linked artifacts for x86_64
|
|
# glibc, since this is the only architecture supported by upstream, we
|
|
# mirror that requirement here. The artifacts in questions are the C
|
|
# modules that are used to drive additional virtualization backends
|
|
# for gns3. For more information, see this ticket:
|
|
# https://github.com/GNS3/gns3-server/issues/970
|
|
archs="x86_64"
|