# $Id$ # Maintainer: Felix Yan # Contributor: Andrea Scarpino # ALARM: Kevin Mihelich # - patch and cmake define to disable opengl for ARM pkgname=kalgebra pkgver=15.12.1 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde-applications' '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-disable-opengl.patch') sha1sums=('19f60237da950c874a7e9942955dd09219b6be9d' '103de918b6fdfb74a030db01afeb378fa0599717') prepare() { mkdir -p build cd kalgebra-${pkgver} patch -p1 -i ../kalgebra-disable-opengl.patch } 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 }