diff options
Diffstat (limited to 'kde-unstable/kdegames-kdiamond/PKGBUILD')
-rw-r--r-- | kde-unstable/kdegames-kdiamond/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/kde-unstable/kdegames-kdiamond/PKGBUILD b/kde-unstable/kdegames-kdiamond/PKGBUILD new file mode 100644 index 000000000..5db398ab4 --- /dev/null +++ b/kde-unstable/kdegames-kdiamond/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171789 2012-11-21 19:22:35Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kdiamond +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A single player puzzle game" +url="http://kde.org/applications/games/kdiamond/" +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/unstable/${pkgver}/src/kdiamond-${pkgver}.tar.xz") +sha1sums=('054bdda050ee60bc475a9f95ad92fab8f60d77f7') + +build() { + mkdir build + cd build + cmake ../kdiamond-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} |