desktop/meandmyshadow/PKGBUILD

32 lines
925 B
Bash
Raw Normal View History

2012-02-25 07:21:03 +08:00
pkgname=meandmyshadow
2016-02-17 12:16:42 +08:00
pkgver=0.4.1
2012-02-25 07:21:03 +08:00
pkgrel=1
pkgdesc="Puzzle/platform game with an interesting concept and rather unique gameplay"
2013-02-13 21:04:15 +08:00
arch=('x86_64')
2012-02-25 07:21:03 +08:00
url="http://meandmyshadow.sourceforge.net/"
license=('GPL3')
2016-02-17 12:16:42 +08:00
depends=('sdl_gfx' 'sdl_image' 'curl' 'libarchive' 'sdl_ttf' 'sdl_mixer' 'hicolor-icon-theme' 'libgl' 'mesa' 'glu')
2012-02-25 07:21:03 +08:00
makedepends=('cmake')
2012-03-07 19:00:46 +08:00
categories=('games')
2013-02-13 21:04:15 +08:00
screenshot=('http://meandmyshadow.sourceforge.net/public/images/screenshot_thumbnail.png')
2016-02-17 12:16:42 +08:00
source=("http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-${pkgver}-src.tar.gz/download"
"XFree.patch")
md5sums=('724cb4a1822572dbe04131b5db658d19'
'571408e6efdf82358570e9f89db115e4')
prepare() {
cd "$pkgname-$pkgver"
patch --binary < "$startdir/XFree.patch"
}
2012-02-25 07:21:03 +08:00
build() {
2013-02-13 21:04:15 +08:00
cd "$srcdir/$pkgname-$pkgver"
cmake -DCMAKE_INSTALL_PREFIX=/usr .
2012-02-25 07:21:03 +08:00
make
}
package() {
2013-02-13 21:04:15 +08:00
cd "$srcdir/$pkgname-$pkgver"
make install DESTDIR="$pkgdir"
2012-02-25 07:21:03 +08:00
}