blob: 5c616301278c232eeff2064cec3ab1e5491a6f21 (
plain)
1 # Description: A tool that makes it easy to create Python bindings for C and C++ libraries
2 # URL: https://www.riverbankcomputing.com/software/sip/intro
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-toml
5
6 name=sip
7 version=6.7.5
8 release=1
9 source=(https://pypi.python.org/packages/source/s/sip/sip-$version.tar.gz)
10
11 build() {
12 cd sip-$version
13
14 /usr/bin/python3 setup.py build
15 /usr/bin/python3 setup.py install --skip-build \
16 --root=$PKG \
17 --optimize=1
18
19 find $PKG \
20 -iname "*README*" \
21 -delete
22 }
|