PKGBUILDs/extra/kdeedu-kalgebra/PKGBUILD

45 lines
1.1 KiB
Bash
Raw Normal View History

2013-05-22 01:01:47 +00:00
# $Id: PKGBUILD 184890 2013-05-09 09:43:04Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch and cmake define to disable opengl for ARM
pkgname=kdeedu-kalgebra
2014-06-10 19:30:53 +00:00
pkgver=4.13.2
2013-05-22 01:01:47 +00:00
pkgrel=1
pkgdesc="Graph Calculator"
url="http://kde.org/applications/education/kalgebra/"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdeedu')
2014-04-18 22:05:54 +00:00
depends=('kdebase-runtime' 'kdeedu-analitza')
2013-12-23 03:57:13 +00:00
makedepends=('cmake' 'automoc4' 'glu')
2013-05-22 01:01:47 +00:00
install=${pkgname}.install
source=("http://download.kde.org/stable/${pkgver}/src/kalgebra-${pkgver}.tar.xz"
"kalgebra-opengl_optional.patch")
2014-06-10 19:30:53 +00:00
sha1sums=('906eaacb21cfc760fcefd82ca21a21d72ebdb971'
2013-05-22 01:01:47 +00:00
'ae1b75e5192f8519517134447b481421112a6dd7')
2014-04-18 22:05:54 +00:00
prepare() {
2013-05-22 01:01:47 +00:00
cd "${srcdir}/kalgebra-${pkgver}"
patch -p1 -i ../kalgebra-opengl_optional.patch
cd "${srcdir}"
mkdir build
2014-04-18 22:05:54 +00:00
}
build() {
2013-05-22 01:01:47 +00:00
cd build
cmake ../kalgebra-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr \
-DSHOULD_BUILD_OPENGL=OFF
make
}
package() {
2014-04-18 22:05:54 +00:00
cd build
2013-05-22 01:01:47 +00:00
make DESTDIR="${pkgdir}" install
}