mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 05:44:17 +08:00
28 lines
505 B
TOML
28 lines
505 B
TOML
[source]
|
|
tar = "https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.4.tar.gz"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"libjpeg",
|
|
"liborbital",
|
|
"libpng",
|
|
"llvm",
|
|
"mesa",
|
|
"sdl2",
|
|
"zlib",
|
|
]
|
|
script = """
|
|
export SDL_LIBS="-lSDL2 -lorbital $("${TARGET}-pkg-config" --libs osmesa) -lstdc++"
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
--prefix=/
|
|
--host="${TARGET}"
|
|
--disable-shared
|
|
--disable-sdltest
|
|
--enable-png
|
|
--enable-jpg
|
|
)
|
|
set -x
|
|
cookbook_configure
|
|
"""
|