2011-07-13 01:04:39 +08:00
|
|
|
#
|
|
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# Maintainer: Atephen McIntosh (stephenmac7) <stephenmac7 gmail.com>
|
|
|
|
|
|
|
|
pkgname=supertux
|
2013-11-30 11:41:22 +08:00
|
|
|
pkgver=0.3.4
|
2014-10-10 00:38:16 +08:00
|
|
|
pkgrel=2
|
2011-07-13 01:04:39 +08:00
|
|
|
pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://super-tux.sourceforge.net/"
|
|
|
|
license=('GPL')
|
2014-10-10 00:38:16 +08:00
|
|
|
depends=('sdl_image' 'curl' 'physfs' 'openal' 'libvorbis' 'glew')
|
|
|
|
makedepends=('cmake' 'boost' 'mesa')
|
|
|
|
source=(https://supertux.googlecode.com/files/supertux-${pkgver}.tar.bz2)
|
2013-11-30 11:41:22 +08:00
|
|
|
md5sums=('108af4c1fd985e8842a15cd819b9b157')
|
2011-07-13 01:04:39 +08:00
|
|
|
|
|
|
|
build() {
|
2014-10-10 00:38:16 +08:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2011-07-13 01:04:39 +08:00
|
|
|
|
2014-10-10 00:38:16 +08:00
|
|
|
cmake -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin .
|
2011-07-13 01:04:39 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2014-10-10 00:38:16 +08:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2011-07-13 01:04:39 +08:00
|
|
|
|
2014-10-10 00:38:16 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2011-07-13 01:04:39 +08:00
|
|
|
}
|