mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/py3-sip: upgrade to 4.19.2, modernize APKBUILD
This commit is contained in:
parent
dbe6ef6e13
commit
745cf9d373
@ -2,38 +2,33 @@
|
||||
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
||||
pkgname=py3-sip
|
||||
_pkgname=sip
|
||||
pkgver=4.18.1
|
||||
pkgver=4.19.2
|
||||
pkgrel=0
|
||||
pkgdesc="A tool that makes it easy to create Python bindings for C and C++ libraries. Python 3 package."
|
||||
url="http://www.riverbankcomputing.com/software/sip/"
|
||||
arch="all"
|
||||
license="custom:sip"
|
||||
depends=""
|
||||
depends_dev=""
|
||||
makedepends="python3-dev"
|
||||
install=""
|
||||
options="!check"
|
||||
replaces="py-sip"
|
||||
subpackages="$pkgname-dev"
|
||||
source="http://sourceforge.net/projects/pyqt/files/$_pkgname/$_pkgname-$pkgver/$_pkgname-$pkgver.tar.gz"
|
||||
builddir="$srcdir"/$_pkgname-$pkgver
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
cd "$builddir"
|
||||
local sip_api_major_nr=$(sed -nre 's:^#define SIP_API_MAJOR_NR\s+([0-9]+):\1:p' siplib/sip.h.in)
|
||||
python3 configure.py
|
||||
make CC="${CC:-gcc}" \
|
||||
CXX="${CXX:-g++}" \
|
||||
CFLAGS="$CFLAGS -fPIC" \
|
||||
CXXFLAGS="$CXXFLAGS" \
|
||||
|| return 1
|
||||
CXXFLAGS="$CXXFLAGS"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
cd "$builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/custom/${pkgname}/LICENSE
|
||||
}
|
||||
|
||||
md5sums="9d664c33e8d0eabf1238a7ff44a399e9 sip-4.18.1.tar.gz"
|
||||
sha256sums="9bce7a2dbf7f105bf68ad1bab58eebc0ce33087ec40396da756463f086ffa290 sip-4.18.1.tar.gz"
|
||||
sha512sums="c4277fa113bf5e28d8a19388f160456654e4ccbbc2adc1209677e95e1efad427ce641ef09875ec0a59e555578986671261dd4c3ac52c673b5803f188fc311222 sip-4.18.1.tar.gz"
|
||||
sha512sums="6f14f387a899130cf15820d2b58d937d134a2eefd53c65a82af060e88a6ca039442b21f822880c4a3742d6f26328853a552239873c55d7b22de62a6cc5037b3e sip-4.19.2.tar.gz"
|
||||
|
Loading…
Reference in New Issue
Block a user