23 lines
601 B
Plaintext
23 lines
601 B
Plaintext
# Description: A tool that makes it easy to create Python bindings for C and C++ libraries
|
|
# URL: http://www.riverbankcomputing.co.uk/software/sip/intro
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
# Depends on: python
|
|
|
|
name=python-sip
|
|
version=4.18.1
|
|
release=1
|
|
|
|
source=(http://sourceforge.net/projects/pyqt/files/sip/sip-$version/sip-$version.tar.gz )
|
|
|
|
build() {
|
|
cd sip-$version
|
|
python2 configure.py -b /usr/bin \
|
|
-d /usr/lib/python2.7/site-packages \
|
|
-e /usr/include/python2.7 \
|
|
-v /usr/share/sip
|
|
make
|
|
make DESTDIR=$PKG install
|
|
chmod 644 $PKG/usr/lib/python2.7/site-packages/sipdistutils.py
|
|
}
|
|
|