2015-02-09 10:54:39 +01:00
|
|
|
from toolchain import Recipe, shprint
|
|
|
|
import sh
|
|
|
|
|
|
|
|
|
|
|
|
class LibSDL2MixerRecipe(Recipe):
|
2019-09-22 16:48:49 +02:00
|
|
|
version = "2.0.4"
|
2015-02-09 10:54:39 +01:00
|
|
|
url = "http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-{version}.tar.gz"
|
|
|
|
library = "Xcode-iOS/build/Release-{arch.sdk}/libSDL2_mixer.a"
|
2015-02-13 18:38:58 +01:00
|
|
|
include_dir = "SDL_mixer.h"
|
2015-02-09 10:54:39 +01:00
|
|
|
depends = ["sdl2"]
|
2015-02-23 11:34:36 +01:00
|
|
|
pbx_frameworks = ["ImageIO"]
|
|
|
|
pbx_libraries = ["libc++"]
|
2015-02-09 10:54:39 +01:00
|
|
|
|
|
|
|
def build_arch(self, arch):
|
2019-09-22 16:48:49 +02:00
|
|
|
# endian.h is in /usr/include/machine/ (Since MacOs Mojave?)
|
|
|
|
# header is needed by libvorbis, so We're adding that folder
|
|
|
|
# to HEADER_SEARCH_PATHS
|
2017-05-02 08:10:11 +02:00
|
|
|
shprint(sh.xcodebuild, self.ctx.concurrent_xcodebuild,
|
2015-02-09 10:54:39 +01:00
|
|
|
"ONLY_ACTIVE_ARCH=NO",
|
|
|
|
"ARCHS={}".format(arch.arch),
|
2019-09-22 16:48:49 +02:00
|
|
|
"HEADER_SEARCH_PATHS=$HEADER_SEARCH_PATHS /usr/include/machine {} ".format(" ".join(arch.include_dirs)),
|
2015-02-09 10:54:39 +01:00
|
|
|
"-sdk", arch.sdk,
|
|
|
|
"-project", "Xcode-iOS/SDL_mixer.xcodeproj",
|
2019-09-22 16:48:49 +02:00
|
|
|
"-target", "libSDL_mixer-iOS",
|
2015-02-09 10:54:39 +01:00
|
|
|
"-configuration", "Release")
|
|
|
|
|
2020-04-25 18:28:16 +02:00
|
|
|
|
2015-02-09 10:54:39 +01:00
|
|
|
recipe = LibSDL2MixerRecipe()
|