# $Id: PKGBUILD 184871 2013-05-09 09:42:44Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-analitza pkgver=4.10.3 pkgrel=1 pkgdesc="A library to add mathematical features to your program" url="https://projects.kde.org/projects/kde/kdeedu/analitza" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz") sha1sums=('d2b986516a5f9ecaa1ed4151afe9f0958b68c868') build() { cd "${srcdir}" mkdir build cd build cmake ../analitza-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install }