# # Games Packages for Chakra, part of chakra-project.org # # Maintainer: Atephen McIntosh (stephenmac7) pkgname=supertux pkgver=0.3.4 pkgrel=2 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') depends=('sdl_image' 'curl' 'physfs' 'openal' 'libvorbis' 'glew') makedepends=('cmake' 'boost' 'mesa') source=(https://supertux.googlecode.com/files/supertux-${pkgver}.tar.bz2) md5sums=('108af4c1fd985e8842a15cd819b9b157') build() { cd "${pkgname}-${pkgver}" cmake -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin . make } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }