sdl2_mixer: add new recipe
This commit is contained in:
parent
6f7dfee999
commit
256bd96aab
1 changed files with 24 additions and 0 deletions
24
recipes/sdl2_mixer/__init__.py
Normal file
24
recipes/sdl2_mixer/__init__.py
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
from toolchain import Recipe, shprint
|
||||||
|
import sh
|
||||||
|
|
||||||
|
|
||||||
|
class LibSDL2MixerRecipe(Recipe):
|
||||||
|
version = "2.0.0"
|
||||||
|
url = "http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-{version}.tar.gz"
|
||||||
|
library = "Xcode-iOS/build/Release-{arch.sdk}/libSDL2_mixer.a"
|
||||||
|
include_dir = "SDL_mixer.h"
|
||||||
|
depends = ["sdl2"]
|
||||||
|
|
||||||
|
def build_arch(self, arch):
|
||||||
|
shprint(sh.xcodebuild,
|
||||||
|
"ONLY_ACTIVE_ARCH=NO",
|
||||||
|
"ARCHS={}".format(arch.arch),
|
||||||
|
"HEADER_SEARCH_PATHS=$HEADER_SEARCH_PATHS {}".format(" ".join(arch.include_dirs)),
|
||||||
|
"-sdk", arch.sdk,
|
||||||
|
"-project", "Xcode-iOS/SDL_mixer.xcodeproj",
|
||||||
|
"-target", "Static Library",
|
||||||
|
"-configuration", "Release")
|
||||||
|
|
||||||
|
|
||||||
|
recipe = LibSDL2MixerRecipe()
|
||||||
|
|
Loading…
Reference in a new issue