kivy-ios/recipes/sdl2_image/__init__.py
Mirko 2ec7cb5ce0 Updated sdl2, sdl2_image, sdl2_mixer, sdl2_ttf, kivy (#370)
* Updated sdl2, sdl2_image, sdl2_mixer, sdl2_ttf, kivy

* bump kivy version to 1.11.0
2019-09-22 16:48:49 +02:00

26 lines
919 B
Python

from toolchain import Recipe, shprint
from os.path import join
import sh
class LibSDL2ImageRecipe(Recipe):
version = "2.0.4"
url = "https://www.libsdl.org/projects/SDL_image/release/SDL2_image-{version}.tar.gz"
library = "Xcode-iOS/build/Release-{arch.sdk}/libSDL2_image.a"
include_dir = "SDL_image.h"
depends = ["sdl2"]
pbx_frameworks = ["CoreGraphics", "MobileCoreServices"]
def build_arch(self, arch):
shprint(sh.xcodebuild, self.ctx.concurrent_xcodebuild,
"ONLY_ACTIVE_ARCH=NO",
"ARCHS={}".format(arch.arch),
"HEADER_SEARCH_PATHS={}".format(
join(self.ctx.include_dir, "common", "sdl2")),
"-sdk", arch.sdk,
"-project", "Xcode-iOS/SDL_image.xcodeproj",
"-target", "libSDL_image-iOS",
"-configuration", "Release")
recipe = LibSDL2ImageRecipe()