# $Id: PKGBUILD 144793 2011-12-08 10:45:23Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-cantor pkgver=4.7.90 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') makedepends=('cmake' 'automoc4' 'r') optdepends=('maxima: Maxima backend' 'octave: Octave backend' 'r: R backend') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/cantor-${pkgver}.tar.bz2") sha1sums=('a23450b3b0772730adc7c1c00aed4c4bee23a9b6') 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 }