# $Id: PKGBUILD 58930 2011-11-20 13:04:05Z andrea $ # Maintainer: Sergej Pupykin # Contributor: Jacek Poplawski pkgname=rocksndiamonds pkgver=3.3.0.1 pkgrel=1 pkgdesc="game similiar to Boulderdash with lots of levels" arch=(i686 x86_64) url="http://www.artsoft.org/rocksndiamonds/" license=('GPL') depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg' 'rocksndiamonds-data') makedepends=('unzip' 'p7zip') source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz) md5sums=('813ced99d54f89db7c593c518d197d18') build() { cd $srcdir # main cd $srcdir/rocksndiamonds-$pkgver make clean make RO_GAME_DIR=/usr/share/rocksndiamonds RW_GAME_DIR=/usr/share/rocksndiamonds || return 1 install -d $pkgdir/usr/bin && \ install -d $pkgdir/usr/share/man/man1 && \ cp $srcdir/rocksndiamonds-$pkgver/rocksndiamonds $pkgdir/usr/bin/rocksndiamonds && \ cp $srcdir/rocksndiamonds-$pkgver/rocksndiamonds.1 $pkgdir/usr/share/man/man1 }