# $Id: PKGBUILD 184890 2013-05-09 09:43:04Z andrea $ # Maintainer: Felix Yan # Contributor: Andrea Scarpino # ALARM: Kevin Mihelich # - patch and cmake define to disable opengl for ARM pkgname=kdeedu-kalgebra pkgname=kalgebra pkgver=14.12.1 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('analitza' 'kio' 'qt5-webkit' 'hicolor-icon-theme') makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'glu') replaces=('kdeedu-kalgebra') conflicts=('kdeedu-kalgebra' 'kdeedu-analitza') install=${pkgname}.install source=("http://download.kde.org/stable/applications/${pkgver}/src/kalgebra-${pkgver}.tar.xz" "kalgebra-opengl_optional.patch") sha1sums=('fb3b4908467c6bd0f7a54b1209fa497e2c66ad34' 'ae1b75e5192f8519517134447b481421112a6dd7') prepare() { cd "${srcdir}/kalgebra-${pkgver}" patch -p1 -i ../kalgebra-opengl_optional.patch cd "${srcdir}" mkdir build } build() { cd build cmake ../kalgebra-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr \ -DSHOULD_BUILD_OPENGL=OFF make } package() { cd build make DESTDIR="${pkgdir}" install }