# $Id: PKGBUILD 213237 2014-05-19 15:02:53Z svenstaro $ # Maintainer: Andrea Scarpino pkgname=kdegames-kspaceduel pkgver=4.13.1 pkgrel=1 pkgdesc="Each of two possible players controls a satellite spaceship orbiting the sun" url="http://kde.org/applications/games/kspaceduel/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegames') depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz") sha1sums=('a99f409160c3e49acd8eee41c0c47e5cc63f452c') build() { mkdir build cd build cmake ../kspaceduel-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd build make DESTDIR="${pkgdir}" install }