mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
15 lines
429 B
Plaintext
15 lines
429 B
Plaintext
# description : Foreign Function Interface for Python calling C code
|
|
# homepage : http://cffi.readthedocs.org
|
|
# depends : python3-pycparser
|
|
|
|
name=python3-cffi
|
|
version=1.16.0
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/c/${name#*-}/${name#*-}-$version.tar.gz"
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|