2012-02-25 07:21:03 +08:00
|
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
2013-02-13 21:04:15 +08:00
|
|
|
# Contributions from: https://aur.archlinux.org/packages/meandmyshadow/
|
2012-02-25 07:21:03 +08:00
|
|
|
|
|
|
|
pkgname=meandmyshadow
|
2013-02-13 21:04:15 +08:00
|
|
|
pkgver=0.4
|
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')
|
2013-02-13 21:04:15 +08:00
|
|
|
depends=('sdl_gfx' 'sdl_image' 'curl' 'libarchive' 'sdl_ttf' 'sdl_mixer' 'hicolor-icon-theme' 'libgl' 'mesa')
|
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')
|
2012-02-25 07:21:03 +08:00
|
|
|
source=("http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-${pkgver}-src.tar.gz/download")
|
2013-02-13 21:04:15 +08:00
|
|
|
md5sums=('8a40de429d0ac7820d367825ba38d08a')
|
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
|
|
|
}
|