# $Id: PKGBUILD 163450 2012-07-11 23:03:35Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeutils-ktimer pkgver=4.8.97 pkgrel=1 pkgdesc='Countdown Launcher' url='http://kde.org/applications/utilities/ktimer/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/ktimer-${pkgver}.tar.xz") sha1sums=('a4e2a19f5dcd342d039b8a5c95372f13a668640f') build() { cd "${srcdir}" mkdir build cd build cmake ../ktimer-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd $srcdir/build make DESTDIR=$pkgdir install cd $srcdir/build/doc make DESTDIR=$pkgdir install }