diff options
author | root <root@rshg054.dnsready.net> | 2012-02-22 23:15:20 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-22 23:15:20 +0000 |
commit | 1d9fb21dff6df1679e536ab672edcbbdb4cf3a15 (patch) | |
tree | 803d7c2e3ac59d0ba8ac74c1b2a6dc6167937631 /community/rocksndiamonds | |
parent | 1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff) |
Wed Feb 22 23:15:20 UTC 2012
Diffstat (limited to 'community/rocksndiamonds')
-rw-r--r-- | community/rocksndiamonds/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/community/rocksndiamonds/PKGBUILD b/community/rocksndiamonds/PKGBUILD index 05cf440cf..c891b3dfe 100644 --- a/community/rocksndiamonds/PKGBUILD +++ b/community/rocksndiamonds/PKGBUILD @@ -1,29 +1,30 @@ -# $Id: PKGBUILD 58930 2011-11-20 13:04:05Z andrea $ +# $Id: PKGBUILD 65505 2012-02-21 06:44:27Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jacek Poplawski <jacekpoplawski@gmail.com> pkgname=rocksndiamonds pkgver=3.3.0.1 -pkgrel=1 +pkgrel=2 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') +depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg') makedepends=('unzip' 'p7zip') source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz) md5sums=('813ced99d54f89db7c593c518d197d18') build() { + depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg' 'rocksndiamonds-data') cd $srcdir # main cd $srcdir/rocksndiamonds-$pkgver make clean - make RO_GAME_DIR=/usr/share/rocksndiamonds RW_GAME_DIR=/usr/share/rocksndiamonds || return 1 + make RO_GAME_DIR=/usr/share/rocksndiamonds RW_GAME_DIR=/usr/share/rocksndiamonds - install -d $pkgdir/usr/bin && \ - install -d $pkgdir/usr/share/man/man1 && \ - cp $srcdir/rocksndiamonds-$pkgver/rocksndiamonds $pkgdir/usr/bin/rocksndiamonds && \ + 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 } |