40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# Template file for 'kconfig'
|
|
pkgname=kconfig
|
|
version=5.115.0
|
|
revision=1
|
|
build_style=cmake
|
|
hostmakedepends="kcoreaddons extra-cmake-modules qt5-host-tools qt5-tools-devel"
|
|
makedepends="qt5-devel qt5-tools-devel qt5-declarative-devel"
|
|
short_desc="KDE Persistent platform-independent application settings"
|
|
maintainer="John <me@johnnynator.dev>"
|
|
license="LGPL-2.0-only, LGPL-2.0-or-later, LGPL-2.1-or-later"
|
|
homepage="https://invent.kde.org/frameworks/kconfig"
|
|
distfiles="${KDE_SITE}/frameworks/${version%.*}/${pkgname}-${version}.tar.xz"
|
|
checksum=bd692b2adf56c54a0fb1e2d402becdc326a8df8ceb89bef9f48361e1b1788612
|
|
|
|
do_check() {
|
|
cd build
|
|
# some problems with locale
|
|
ctest -E 'kconfig(core-kconfig|gui-kstandardshortcutwatcher)test'
|
|
}
|
|
|
|
post_install() {
|
|
# Backward compatible symlink
|
|
vmkdir usr/lib/libexec/kf5
|
|
ln -s ../../../libexec/kf5/kconf_update \
|
|
${DESTDIR}/usr/lib/libexec/kf5
|
|
ln -s ../../../libexec/kf5/kconfig_compiler_kf5 \
|
|
${DESTDIR}/usr/lib/libexec/kf5
|
|
}
|
|
|
|
kconfig-devel_package() {
|
|
short_desc+=" - development"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/qt5/mkspecs
|
|
vmove usr/lib/cmake
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|