mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
15 lines
481 B
Plaintext
15 lines
481 B
Plaintext
# description : A tool that makes it easy to create Python bindings for C and C++ libraries
|
|
# homepage : https://www.riverbankcomputing.com/software/sip/intro
|
|
# depends : python3-setuptools python3-packaging python3-toml
|
|
|
|
name=python3-sip
|
|
version=6.8.1
|
|
release=1
|
|
source="$name-$version.tar.gz::https://pypi.python.org/packages/source/s/sip/sip-$version.tar.gz"
|
|
|
|
build() {
|
|
cd sip-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --skip-build --root="$PKG" --optimize=1
|
|
}
|