diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-02 21:25:10 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-02 21:27:05 +0000 |
commit | 6759bf356df6b7a16747ee342baf97b1e18d9425 (patch) | |
tree | 967c424962de4b5c078421f9d2559bfa59e41a93 /community/gns3-server | |
parent | d73ed5943741ece817a2b8e9eea2e68622e3c186 (diff) | |
download | aports-6759bf356df6b7a16747ee342baf97b1e18d9425.tar.bz2 aports-6759bf356df6b7a16747ee342baf97b1e18d9425.tar.xz |
community/gns3-server: build fix
disable stripping. its mostly python scripts. the only binary is a
statically linked busybox.
Diffstat (limited to 'community/gns3-server')
-rw-r--r-- | community/gns3-server/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/community/gns3-server/APKBUILD b/community/gns3-server/APKBUILD index f6c6267897..91b427b213 100644 --- a/community/gns3-server/APKBUILD +++ b/community/gns3-server/APKBUILD @@ -11,6 +11,8 @@ depends="busybox dynamips python3 py3-psutil py3-jinja2 py3-aiohttp py3-pytest py3-netifaces py3-ws4py py3-zipstream py3-raven py3-jsonschema" makedepends="py-setuptools python3-dev linux-headers py3-pytest" subpackages="$pkgname-doc" +# the onlyl binary we have is a static busybox which we dont need to strip +options="!strip" source="$pkgname-$pkgver.tar.gz::https://github.com/GNS3/$pkgname/archive/v$pkgver.tar.gz" builddir="$srcdir"/$pkgname-$pkgver @@ -36,7 +38,7 @@ gns3-server has several optional packages that must be installed manually for ad apk add wiresark apk add ubridge apk add cpulimit - apk add iouyap + apk add iouyap apk add vpcs EOF |