# $Id: PKGBUILD 158421 2012-05-03 22:32:18Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-cantor pkgver=4.8.3 pkgrel=1 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=('e4aba48e30a4bee444f7e01eab807619908cd903') 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 }