#contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/extra-cmake-modules source ../frameworks.conf pkgname=extra-cmake-modules pkgver=$KFECMVersion pkgrel=1 pkgdesc='Extra CMake modules' arch=('x86_64') 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 \ -DBUILD_HTML_DOCS=OFF make } package() { cd build make DESTDIR="${pkgdir}" install }