From 721e8fe43a61eef3ceecb01d0a550a6e0a9387f3 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel <mat@kivy.org> Date: Fri, 13 Feb 2015 18:38:23 +0100 Subject: [PATCH] sdl2: uses a contributed version of SDL2 as the stable version has issue when setting the resolution. Need to test back the stable one. --- recipes/sdl2/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/sdl2/__init__.py b/recipes/sdl2/__init__.py index 955b38f..efc020e 100644 --- a/recipes/sdl2/__init__.py +++ b/recipes/sdl2/__init__.py @@ -3,8 +3,10 @@ import sh class LibSDL2Recipe(Recipe): - version = "2.0.3" - url = "https://www.libsdl.org/release/SDL2-{version}.tar.gz" + #version = "2.0.3" + #url = "https://www.libsdl.org/release/SDL2-{version}.tar.gz" + version = "iOS-improvements" + url = "https://bitbucket.org/slime73/sdl-experiments/get/{version}.tar.gz" library = "Xcode-iOS/SDL/build/Release-{arch.sdk}/libSDL2.a" include_dir = "include"