# $Id: PKGBUILD 187967 2013-06-08 07:59:48Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-cantor pkgver=4.10.4 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" 'sage58.patch') sha1sums=('3ecd559d6563945ed7730a524c2da5d637a340ba' 'c02051c30ece57800d693da60280b0bdb5f45697') prepare() { cd cantor-${pkgver} patch -p1 -i "${srcdir}"/sage58.patch } build() { mkdir build cd build cmake ../cantor-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install }