85 lines
2.6 KiB
Bash
85 lines
2.6 KiB
Bash
# Maintainer: Biswapriyo Nath <nathbappai@gmail.com>
|
|
|
|
source "$(dirname ${BASH_SOURCE[0]})"/../mingw-w64-PKGBUILD-common/kde-frameworks
|
|
_realname=qqc2-desktop-style
|
|
pkgbase="mingw-w64-${_realname}"
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
|
|
pkgver=6.19.0
|
|
pkgrel=1
|
|
pkgdesc="A style for Qt Quick Controls 2 to make it follow your desktop theme (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('ucrt64' 'clang64' 'clangarm64')
|
|
msys2_references=(
|
|
'archlinux: qqc2-desktop-style'
|
|
)
|
|
msys2_repository_url='https://invent.kde.org/frameworks/qqc2-desktop-style/'
|
|
url='https://community.kde.org/Frameworks/'
|
|
license=('spdx:LGPL-2.0-or-later')
|
|
depends=(
|
|
"${MINGW_PACKAGE_PREFIX}-cc-libs"
|
|
"${MINGW_PACKAGE_PREFIX}-kcolorscheme"
|
|
"${MINGW_PACKAGE_PREFIX}-kconfig"
|
|
"${MINGW_PACKAGE_PREFIX}-kiconthemes"
|
|
"${MINGW_PACKAGE_PREFIX}-kirigami"
|
|
"${MINGW_PACKAGE_PREFIX}-qt6-base"
|
|
"${MINGW_PACKAGE_PREFIX}-qt6-declarative"
|
|
"${MINGW_PACKAGE_PREFIX}-sonnet"
|
|
)
|
|
makedepends=(
|
|
"${MINGW_PACKAGE_PREFIX}-cc"
|
|
"${MINGW_PACKAGE_PREFIX}-cmake"
|
|
"${MINGW_PACKAGE_PREFIX}-extra-cmake-modules"
|
|
"${MINGW_PACKAGE_PREFIX}-ninja"
|
|
"${MINGW_PACKAGE_PREFIX}-qt6-tools"
|
|
)
|
|
groups=("${MINGW_PACKAGE_PREFIX}-kf6")
|
|
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${_realname}-${pkgver}.tar.xz"{,.sig}
|
|
"001-stack-corruption-win.patch")
|
|
sha256sums=('68f9b93f6e8b0fba244f022d8367ef4735422be746e6752764ab3887e05f8535'
|
|
'SKIP'
|
|
'43be67519c308f235056122320a41f85013b1b93ddab68a5585066a1da4cb9d2')
|
|
validpgpkeys=(
|
|
'E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell <jr@jriddell.org>
|
|
'90A968ACA84537CC27B99EAF2C8DF587A6D4AAC1' # Nicolas Fella <nicolas.fella@kde.org>
|
|
)
|
|
|
|
apply_patch_with_msg() {
|
|
for _patch in "$@"
|
|
do
|
|
msg2 "Applying $_patch"
|
|
patch -Nbp1 -i "${srcdir}/$_patch"
|
|
done
|
|
}
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${_realname}-${pkgver}"
|
|
apply_patch_with_msg \
|
|
001-stack-corruption-win.patch
|
|
}
|
|
|
|
build() {
|
|
declare -a _extra_config
|
|
if check_option "debug" "n"; then
|
|
_extra_config+=("-DCMAKE_BUILD_TYPE=Release")
|
|
else
|
|
_extra_config+=("-DCMAKE_BUILD_TYPE=Debug")
|
|
fi
|
|
|
|
_kde_build_env
|
|
MSYS2_ARG_CONV_EXCL="-DCMAKE_INSTALL_PREFIX=" \
|
|
"${MINGW_PREFIX}"/bin/cmake.exe \
|
|
-GNinja \
|
|
-DCMAKE_INSTALL_PREFIX="${MINGW_PREFIX}" \
|
|
"${_KDE_INSTALL_DIRS[@]}" \
|
|
-DBUILD_TESTING=OFF \
|
|
"${_extra_config[@]}" \
|
|
-S "${_realname}-${pkgver}" \
|
|
-B "build-${MSYSTEM}"
|
|
|
|
"${MINGW_PREFIX}"/bin/cmake.exe --build "build-${MSYSTEM}"
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="${pkgdir}" "${MINGW_PREFIX}"/bin/cmake.exe --install "build-${MSYSTEM}"
|
|
}
|