aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-aiohttp-cors-gns3/APKBUILD
blob: 83b030071fcdbd27dbc0372632e9e1b0d60d4662 (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
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-aiohttp-cors-gns3
_pkgname=aiohttp_cors
pkgver=0.5.3
pkgrel=0
pkgdesc="CORS support for aiohttp - GNS3 compatible version"
url="https://github.com/aio-libs/aiohttp-cors"
arch="noarch"
license="Apache-2.0"
depends="py3-aiohttp-gns3"
conflict="py3-aiohttp-cors"
makedepends="python3-dev py3-setuptools"
source="$_pkgname-$pkgver.tar.gz::https://github.com/aio-libs/aiohttp-cors/archive/v$pkgver.tar.gz"
builddir="$srcdir"/aiohttp-cors-$pkgver

build() {
	cd "$builddir"
	python3 setup.py build
}

check() {
	cd "$builddir"
	python3 setup.py check
}

package() {
	cd "$builddir"
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="0813ea48de714c85e361dfdaeef1a69526f7446dcc4ce637139cd333dedea58c635f85cfad1c3ccfb0df6e573f0351f282fdbd9726211d5915ed2ba120206b09  aiohttp_cors-0.5.3.tar.gz"