19 lines
500 B
Plaintext
19 lines
500 B
Plaintext
# Description: The ultra-reliable, fast ASGI+WSGI framework for building data plane APIs at scale
|
|
# URL: https://falconframework.org/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-falcon
|
|
version=3.1.3
|
|
release=1
|
|
source=(https://pypi.org/packages/source/f/falcon/falcon-$version.tar.gz)
|
|
|
|
build() {
|
|
cd falcon-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build
|
|
}
|