mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 23:47:13 +08:00
44 lines
908 B
Bash
44 lines
908 B
Bash
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||
|
|
||
|
source ../frameworks.conf
|
||
|
|
||
|
pkgname=kconfig
|
||
|
pkgver=${KFVersion}
|
||
|
pkgrel=1
|
||
|
pkgdesc='Offers functionality around reading and writing configuration'
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='https://projects.kde.org/projects/frameworks/kconfig'
|
||
|
license=('LGPL')
|
||
|
depends=('qt5-base')
|
||
|
makedepends=('extra-cmake-modules')
|
||
|
checkdepends=('cmake')
|
||
|
groups=('kf5')
|
||
|
options=("debug")
|
||
|
source=("${KFServer}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
||
|
md5sums=('d55d20678c606f34e029642b6527692c')
|
||
|
|
||
|
prepare() {
|
||
|
mkdir -p build
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
cd build
|
||
|
cmake ../${pkgname}-${pkgver} \
|
||
|
-DCMAKE_BUILD_TYPE=${KFBuildType} \
|
||
|
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
|
||
|
-DLIB_INSTALL_DIR=lib
|
||
|
make
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
cd build
|
||
|
msg "tests below are partially failing; probably of GUI dependency"
|
||
|
make test | return 0
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|
||
|
|