void-packages/srcpkgs/shiboken2/template
2020-02-05 09:22:36 +01:00

71 lines
1.9 KiB
Bash

# Template file for 'shiboken2'
pkgname=shiboken2
version=5.14.1
revision=1
_pkgname="pyside-setup-opensource-src-${version}"
wrksrc="$_pkgname"
configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF"
hostmakedepends="cmake python3-devel"
makedepends="python3-devel qt5-devel qt5-xmlpatterns-devel clang libxml2-devel
libxslt-devel python3-numpy"
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=41ce931695567639c92acb68a9d66ed5609f067011af9a94b53fc0d697ad1d1c
python_version=3
do_build() {
[ ! -d build ] && mkdir build
pushd build
export CLANG_INSTALL_DIR=/usr
cmake ../sources/shiboken2 ${configure_args}
make ${makejobs}
popd
}
do_install() {
make -C build DESTDIR=${DESTDIR} install
}
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}
}
}
python3-shiboken_package() {
short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
depends="python3-shiboken2-${version}_${revision}"
build_style=meta
archs=noarch
}
libshiboken-python3_package() {
short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
depends="python3-shiboken2-${version}_${revision}"
build_style=meta
archs=noarch
}