mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 18:20:12 +00:00
15 lines
370 B
Plaintext
15 lines
370 B
Plaintext
# description : A tool that makes it easy to create Python bindings for C and C++ libraries
|
|
# depends : python3
|
|
|
|
name=python3-sip
|
|
version=4.19.23
|
|
release=1
|
|
source="https://www.riverbankcomputing.com/static/Downloads/sip/$version/sip-$version.tar.gz"
|
|
|
|
build() {
|
|
cd sip-$version
|
|
python3 configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|