sip: initial commit, version 4.19.20

This commit is contained in:
Tim Biermann 2019-12-29 11:40:22 +01:00
parent c5191ec976
commit 6179c7dedf
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 30 additions and 0 deletions

5
sip/.footprint Normal file
View File

@ -0,0 +1,5 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/sip
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/sip.h

5
sip/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yDExNFXqpvz9PCdGEgRUIXBK+ID5aEo1Ica/7++kvm1/BZzzustjBjX01UPoX5t/vinLO7e4I6PxgpHi6L27w4=
SHA256 (Pkgfile) = 2c4fd4a1af6618d578a7f879b7e996455c55d16ac04f85d498a32fe2dd72d0f4
SHA256 (.footprint) = a3243c2569bc065130d403814200fb53bc392ffa8e227f634df119eb14d356b2
SHA256 (sip-4.19.20.tar.gz) = 04cc2f87ac97e8718d8e1ef036e3ec26050ab44c21f9277618d5b67432fcbfd6

20
sip/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# 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
name=sip
version=4.19.20
release=1
source=(https://www.riverbankcomputing.com/static/Downloads/sip/$version/$name-$version.tar.gz)
build() {
cd $name-$version
mkdir build
cd build
python3 ../configure.py CFLAGS="$CFLAGS"
make
make DESTDIR=$PKG install -C sipgen
mv $PKG/usr/include/{python*/sip.h,}
rm -r $PKG/usr/include/python*
}