void-packages/srcpkgs/qt6-multimedia/template

48 lines
1.6 KiB
Bash

# Template file for 'qt6-multimedia'
pkgname=qt6-multimedia
version=6.4.0
revision=1
build_style=cmake
configure_args="-DQT_FEATURE_gstreamer=ON"
hostmakedepends="perl qt6-declarative-devel pkg-config
qt6-shadertools-devel"
makedepends="qt6-declarative-devel
qt6-shadertools-devel libglib-devel gst-plugins-base1-devel"
short_desc="Cross-platform application and UI framework - multimedia"
maintainer="John <me@johnnynator.dev>"
license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only with Qt-GPL-exception-1.0"
homepage="https://qt.io/"
distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtmultimedia-everywhere-src-${version}.tar.xz"
checksum=e82e8e847cae2a951a11db05b6d10a22b21e3a1d72e06a7781cce4bd197e796f
if [ "$XBPS_MACHINE" = "i686" ]; then
CXXFLAGS="-DPFFFT_SIMD_DISABLE=1"
CFLAGS="-DPFFFT_SIMD_DISABLE=1"
fi
do_check() {
cd build
local broken="tst_qmediaformat|tst_qaudiodecoderbackend"
broken+="|tst_qaudiodevice|tst_qaudiosource|tst_qaudiosink"
broken+="|tst_qmediaplayerbackend|tst_qmediacapturesession"
broken+="|tst_qcamerabackend|tst_qquickvideooutput"
broken+="|tst_qquickvideooutput_window"
ctest -E "($broken)"
}
qt6-multimedia-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/metatypes
vmove usr/lib/pkgconfig
vmove usr/lib/qt6/mkspecs
vmove usr/lib/qt6/qml/QtMultimedia/plugins.qmltypes
vmove usr/lib/qt6/qml/QtMultimedia/qmldir
vmove "usr/lib/*.so"
vmove "usr/lib/*.prl"
}
}