# $Id: PKGBUILD 155599 2012-04-04 14:15:11Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-kiten pkgver=4.8.2 pkgrel=1 pkgdesc="Japanese Reference/Study Tool" url="http://kde.org/applications/education/kiten/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kiten-${pkgver}.tar.xz") sha1sums=('db608b5550281e8ca0097e3c4ed15abe6018a002') build() { cd "${srcdir}" mkdir build cd build cmake ../kiten-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install }