# $Id: PKGBUILD 155583 2012-04-04 14:14:22Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-cantor pkgver=4.8.2 pkgrel=2 pkgdesc="KDE Frontend to Mathematical Software" url="http://kde.org/applications/education/cantor/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libspectre' 'kdeedu-analitza' 'libqalculate') makedepends=('cmake' 'automoc4' 'r') optdepends=('maxima: Maxima backend' 'octave: Octave backend' 'r: R backend') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/cantor-${pkgver}.tar.xz") sha1sums=('53a13c3594ea82b87a421e96b408355eea76fa89') build() { cd "${srcdir}" mkdir build cd build cmake ../cantor-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install }