2011-07-13 01:04:39 +08:00
|
|
|
pkgname=supertux
|
2015-04-12 15:46:17 +08:00
|
|
|
pkgver=0.3.5
|
|
|
|
pkgrel=1
|
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"
|
2015-04-12 15:46:17 +08:00
|
|
|
arch=('x86_64')
|
2011-07-13 01:04:39 +08:00
|
|
|
url="http://super-tux.sourceforge.net/"
|
|
|
|
license=('GPL')
|
2015-04-12 15:46:17 +08:00
|
|
|
depends=('sdl2_image' 'curl' 'physfs' 'openal' 'libvorbis' 'glew')
|
|
|
|
makedepends=('cmake' 'boost' 'mesa' 'optipng')
|
|
|
|
source=(https://github.com/SuperTux/supertux/archive/v${pkgver}.tar.gz)
|
|
|
|
md5sums=('bdfd7942099b664a0f1af74d73e69bda')
|
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
|
|
|
}
|