mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 01:16:26 +00:00
18 lines
453 B
Plaintext
18 lines
453 B
Plaintext
# description : A tool that makes it easy to create Python bindings for C and C++ libraries (python2)
|
|
# depends : python2 glibc
|
|
|
|
name=python2-sip
|
|
version=4.19.13
|
|
release=1
|
|
source=(https://sourceforge.net/projects/pyqt/files/sip/sip-$version/sip-$version.tar.gz)
|
|
md5sum=(9124cb8978742685747a5415179a9890)
|
|
|
|
build() {
|
|
cd sip-$version
|
|
python2 configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
mv $PKG/usr/bin/sip{,-py2}
|
|
}
|