# Maintainer: Qirui Wang # Contributor: Carl George < arch at cgtx dot us > _name="sanic" pkgname="python-$_name" pkgver=21.6.2 pkgrel=1 pkgdesc='Async Python 3.6+ web server/framework | Build fast. Run fast.' arch=("any") url='https://sanicframework.org/' license=("MIT") depends=( 'python-sanic-routing' 'python-httptools' 'python-aiofiles' 'python-websockets' 'python-multidict' 'python-uvloop' 'python-ujson' ) makedepends=("python-setuptools") source=("https://github.com/sanic-org/${_name}/archive/v${pkgver}.tar.gz") sha256sums=('9414715f18d8a714b319d2df444f41894035ce45a2a1b9f04197169c7404a20d') build() { cd "$_name-$pkgver" python setup.py build } package() { cd "$_name-$pkgver" python setup.py install --skip-build --root="$pkgdir" --optimize=1 install -Dm644 ./LICENSE "$pkgdir/usr/share/licenses/$pkgname/licence" }