50e5ad1c72
add SHIBOKEN_CLANG_OPTIONS env variable support to manage crossbuild
51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
# Template file for 'shiboken2'
|
|
pkgname=shiboken2
|
|
version=5.15.2
|
|
revision=1
|
|
_pkgname="pyside-setup-opensource-src-${version}"
|
|
wrksrc="${_pkgname/%5.14.2.1/5.14.2}"
|
|
build_wrksrc="sources/shiboken2"
|
|
build_style=cmake
|
|
hostmakedepends="cmake python3-devel"
|
|
makedepends="python3-devel qt5-devel qt5-xmlpatterns-devel clang libxml2-devel
|
|
libxslt-devel python3-numpy"
|
|
depends="clang"
|
|
short_desc="Python binding generator of Qt5 C++ API"
|
|
maintainer="yopito <pierre.bourgin@free.fr>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://wiki.qt.io/Qt_for_Python/Shiboken"
|
|
distfiles="https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-${version}-src/${_pkgname}.tar.xz"
|
|
checksum=b306504b0b8037079a8eab772ee774b9e877a2d84bab2dbefbe4fa6f83941418
|
|
|
|
python_version=3
|
|
export CLANG_INSTALL_DIR=${XBPS_CROSS_BASE}/usr
|
|
|
|
if [ ${CROSS_BUILD} ]; then
|
|
hostmakedepends+=" qt5-qmake qt5-host-tools shiboken2"
|
|
fi
|
|
|
|
libshiboken2-devel_package() {
|
|
depends="${sourcepkg}-${version}_${revision}
|
|
libshiboken2-${version}_${revision} python3-shiboken2-${version}_${revision}"
|
|
short_desc+=" - common development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
libshiboken2_package() {
|
|
short_desc="Python3 shiboken2 bindings - shared library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
python3-shiboken2_package() {
|
|
short_desc="Python3 shiboken2 bindings"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}
|
|
}
|
|
}
|