void-packages/srcpkgs/qt6-wayland/template
2021-06-13 10:30:45 +02:00

41 lines
1.3 KiB
Bash

# Template file for 'qt6-wayland'
pkgname=qt6-wayland
version=6.1.1
revision=1
wrksrc="qtwayland-everywhere-src-${version}"
build_style=cmake
configure_args="-DQT_HOST_PATH=/usr -DQT_BUILD_TOOLS_WHEN_CROSSCOMPILING=true"
hostmakedepends="qt6-base-devel perl pkg-config wayland-devel qt6-wayland-devel"
# XXX: Qml as optional dep
makedepends="qt6-base-devel wayland-devel libxkbcommon-devel
libXcomposite-devel MesaLib-devel Vulkan-Headers libdrm-devel"
checkdepends="dbus mesa-dri"
short_desc="Cross-platform application and UI framework - Wayland"
maintainer="John <me@johnnynator.dev>"
license="GPL-3.0-only with Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later"
homepage="https://www.qt.io"
distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtwayland-everywhere-src-${version}.tar.xz"
checksum=2cfb2b5403eb2037670549dd2d3968eaa30a9ce523dd08314c5bc677fdf27db6
if [ "$XBPS_CHECK_PKGS" ]; then
configure_args+=" -DQT_BUILD_TESTS=ON"
fi
do_check() {
cd build
dbus-run-session ctest -E 'tst_seatv4'
}
qt6-wayland-devel_package() {
depends="${sourcepkg}>=${version}_${revision} qt6-base-devel>=${version}_1"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/cmake
vmove usr/lib/qt6/mkspecs
vmove usr/lib/qt6/bin/qtwaylandscanner
vmove "usr/lib/*.so"
vmove "usr/lib/*.prl"
}
}