mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
66 lines
1.9 KiB
Text
66 lines
1.9 KiB
Text
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-sip
|
|
_pkgname=sip
|
|
pkgver=4.19.22
|
|
pkgrel=0
|
|
pkgdesc="A tool that makes it easy to create Python bindings for C and C++ libraries"
|
|
options="!check" # No testsuite
|
|
url="http://www.riverbankcomputing.com/software/sip/"
|
|
arch="all"
|
|
license="custom:sip"
|
|
makedepends="python3-dev"
|
|
subpackages="
|
|
$pkgname-pyqt5
|
|
$pkgname-dev::noarch
|
|
$pkgname-doc"
|
|
source="https://www.riverbankcomputing.com/static/Downloads/$_pkgname/$pkgver/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-sip" # Backwards comptibility
|
|
provides="py-sip=$pkgver-r$pkgrel" # Backwards comptibility
|
|
|
|
prepare() {
|
|
default_prepare
|
|
mkdir -p "$srcdir"/python3-sip
|
|
mkdir -p "$srcdir"/python3-PyQt5.sip
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir"/python3-sip
|
|
python3 "$builddir"/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS"
|
|
|
|
cd "$srcdir"/python3-PyQt5.sip
|
|
python3 "$builddir"/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS" --sip-module PyQt5.sip --no-tools
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/python3-sip
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Move sip.h to /usr/include
|
|
mv "$pkgdir"/usr/include/python3*/sip.h "$pkgdir"/usr/include/sip.h
|
|
rm -rf "$pkgdir"/usr/include/python3*
|
|
|
|
install -Dm644 "$builddir"/LICENSE "$pkgdir"/usr/share/licenses/custom/$pkgname/LICENSE
|
|
}
|
|
|
|
pyqt5() {
|
|
pkgdesc="Python3 SIP bindings for C and C++ libraries"
|
|
|
|
replaces="" # Reset
|
|
provides="" # Reset
|
|
|
|
cd "$srcdir"/python3-PyQt5.sip
|
|
make DESTDIR="$subpkgdir" install
|
|
}
|
|
|
|
dev() {
|
|
replaces="py-sip-dev" # Backwards compatibility
|
|
provides="py-sip-dev=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
depends_dev="py3-sip" # Depend on the package that provides the sip binary
|
|
default_dev
|
|
}
|
|
|
|
sha512sums="4d366e589945e589f69a3caf979076ef37e319ac0efdd8ec3cee4869da89e112832462215ca2e235036bacfade7efc4d530aa93e7492c283dc1b2503e08feea5 sip-4.19.22.tar.gz"
|