summaryrefslogtreecommitdiff
path: root/community/supertux/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/supertux/PKGBUILD')
-rw-r--r--community/supertux/PKGBUILD13
1 files changed, 9 insertions, 4 deletions
diff --git a/community/supertux/PKGBUILD b/community/supertux/PKGBUILD
index 9d6b2ecc0..152a2d7da 100644
--- a/community/supertux/PKGBUILD
+++ b/community/supertux/PKGBUILD
@@ -5,19 +5,24 @@
pkgname=supertux
pkgver=0.3.3
-pkgrel=5
+pkgrel=5.1
pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games"
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'mips64el')
url="http://super-tux.sourceforge.net/"
license=('GPL')
depends=('sdl_image' 'curl' 'physfs' 'openal' 'libvorbis' 'libgl' 'glew')
makedepends=('cmake' 'boost')
-source=(http://download.berlios.de/supertux/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f3f803e629ee51a9de0b366a036e393d')
+source=("http://download.berlios.de/supertux/${pkgname}-${pkgver}.tar.bz2"
+ 'squirrel.patch')
+md5sums=('f3f803e629ee51a9de0b366a036e393d'
+ 'eb06315514be4f200428f14b927beb66')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
+ # The following patch was taken from https://supertux.lethargik.org/bugs/view.php?id=933&nbn=3
+ patch -Np1 -i "$srcdir/squirrel.patch"
+
sed -i '1i#include <cstddef>' src/supertux/screen_manager.hpp
sed -i '/types\.h/d' src/addon/addon_manager.cpp
cmake -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin .