# $Id: PKGBUILD 95026 2013-08-03 22:26:22Z svenstaro $ # Contributor: Jaroslaw Swierczynski # Contributor: Eric BĂ©langer # Contributor: vande198 # Maintainer: Daniel J Griffiths pkgname=supertux pkgver=0.3.4 pkgrel=1 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' 'optipng') source=(https://supertux.googlecode.com/files/supertux-${pkgver}.tar.bz2) md5sums=('108af4c1fd985e8842a15cd819b9b157') build() { cd "${srcdir}/${pkgname}-${pkgver}" cmake -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin . make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }