# $Id: PKGBUILD 184866 2013-05-09 09:42:39Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeedu-marble pkgver=4.10.3 pkgrel=1 pkgdesc="Desktop Globe" url="http://kde.org/applications/education/marble/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4' 'gpsd') optdepends=('gpsd: gps support') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz") sha1sums=('814fffa64d91bec647c3f7e5cb130a2027dd6815') build() { mkdir build cd build cmake ../marble-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd build make DESTDIR="${pkgdir}" install }