diff options
Diffstat (limited to 'sip5/Pkgfile')
-rw-r--r-- | sip5/Pkgfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sip5/Pkgfile b/sip5/Pkgfile new file mode 100644 index 000000000..731c273a9 --- /dev/null +++ b/sip5/Pkgfile @@ -0,0 +1,17 @@ +# Description: A tool that makes it easy to create Python bindings for C and C++ libraries +# URL: https://www.riverbankcomputing.com/software/sip/intro +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-toml + +name=sip5 +version=5.0.1 +release=1 +source=(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 +} |