Date: Friday, July 21, 2017 @ 19:44:14 Author: arojas Revision: 300981
archrelease: copy kde-unstable to kde-unstable-x86_64 Added: ktouch/repos/kde-unstable-x86_64/ ktouch/repos/kde-unstable-x86_64/PKGBUILD (from rev 300980, ktouch/kde-unstable/PKGBUILD) ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Copied: ktouch/repos/kde-unstable-x86_64/PKGBUILD (from rev 300980, ktouch/kde-unstable/PKGBUILD) =================================================================== --- kde-unstable-x86_64/PKGBUILD (rev 0) +++ kde-unstable-x86_64/PKGBUILD 2017-07-21 19:44:14 UTC (rev 300981) @@ -0,0 +1,39 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=ktouch +pkgver=17.07.80 +pkgrel=1 +pkgdesc="Touch Typing Tutor" +url="https://kde.org/applications/education/ktouch/" +arch=(i686 x86_64) +license=(GPL LGPL FDL) +groups=(kde-applications kdeedu) +depends=(kqtquickcharts libxkbfile kcmutils hicolor-icon-theme qt5-quickcontrols qt5-graphicaleffects) +makedepends=(extra-cmake-modules mesa kdoctools python) +conflicts=(kdeedu-ktouch) +replaces=(kdeedu-ktouch) +source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('d1ec9cb29f5a0356d8d5bab28aa576a49d7327fb35973803622a5e68b64be05e' + 'SKIP') +validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aa...@kde.org> + F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cf...@kde.org> + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../$pkgname-$pkgver \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DBUILD_TESTING=OFF + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}