# Include global configuration source ../kdeapps.conf pkgname=kdeedu-ktouch _pkgname=ktouch pkgver=${_kdever} pkgrel=1 pkgdesc="Touch-typing tutor" url="http://kde.org/applications/education/ktouch/" screenshot='https://www.kde.org/images/screenshots/ktouch.png' arch=('x86_64') license=('GPL' 'LGPL' 'FDL') depends=("kde-runtime" "kqtquickcharts") makedepends=('cmake' 'automoc4' 'docbook-xsl') groups=("kde" "kdeedu" "kde-uninstall") categories=('education') options=('docs' 'debug') install=${pkgname}.install source=("$_mirror/${_pkgname}-$_kdever.tar.xz") sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`) build() { cd ${srcdir}/${_pkgname}-${pkgver} cmake . \ -DCMAKE_BUILD_TYPE=${_build_type} \ -DCMAKE_INSTALL_PREFIX=${_installprefix} \ -DCMAKE_SKIP_RPATH=ON \ -DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed' make } package() { cd ${srcdir}/${_pkgname}-${pkgver} make DESTDIR=${pkgdir} install }