# $Id: PKGBUILD 158455 2012-05-03 22:33:19Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-step pkgver=4.8.3 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libqalculate' 'gsl') makedepends=('cmake' 'automoc4' 'eigen') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.xz") sha1sums=('2356c87aa3faec080a4963fc69a4d07c2d44a67d') build() { cd "${srcdir}" mkdir build cd build cmake ../step-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install }