mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 03:44:39 +08:00
38 lines
691 B
Bash
38 lines
691 B
Bash
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||
|
|
||
|
source ../frameworks.conf
|
||
|
|
||
|
pkgname=extra-cmake-modules
|
||
|
pkgver=$KFECMVersion
|
||
|
pkgrel=1
|
||
|
pkgdesc='Extra CMake modules'
|
||
|
arch=('any')
|
||
|
url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
|
||
|
license=('LGPL')
|
||
|
depends=('cmake')
|
||
|
makedepends=('qt5-tools' 'python3-sphinx')
|
||
|
source=("$KFServer/${pkgname}-${pkgver}.tar.xz")
|
||
|
sha256sums=( $(getSum $pkgname) )
|
||
|
|
||
|
prepare() {
|
||
|
mkdir -p build
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
cd build
|
||
|
make test
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
cd build
|
||
|
cmake ../${pkgname}-${pkgver} \
|
||
|
-DCMAKE_INSTALL_PREFIX=$KFInstallPrefix \
|
||
|
-DCMAKE_BUILD_TYPE=$KFBuildType
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|