# $Id: PKGBUILD 155371 2012-04-02 14:03:22Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-step pkgver=4.8.2 pkgrel=2 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=('0620924f7683c29e855482af8822067722ced080') 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 }