19 lines
442 B
Plaintext
19 lines
442 B
Plaintext
|
# Description: a Python WSGI HTTP Server for UNIX
|
||
|
# URL: https://gunicorn.org/
|
||
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
||
|
# Depends on: python3-packaging
|
||
|
|
||
|
name=gunicorn
|
||
|
version=21.2.0
|
||
|
release=1
|
||
|
source=(https://pypi.org/packages/source/g/gunicorn/gunicorn-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
--skip-build
|
||
|
}
|