mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-30 08:38:43 +08:00
27 lines
549 B
TOML
27 lines
549 B
TOML
[source]
|
|
tar = "http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-1.0.4.tar.gz"
|
|
blake3 = "2e9bd2dc0f004349b51418f33219ebf5cd69f25ed0ba660373652a662cbb857c"
|
|
script = """
|
|
GNU_CONFIG_GET config.sub
|
|
"""
|
|
|
|
[build]
|
|
dependencies = [
|
|
"freetype2",
|
|
"liborbital",
|
|
"libpng",
|
|
"llvm18",
|
|
"mesa",
|
|
"sdl2",
|
|
"zlib",
|
|
]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
export SDL_LIBS="-lSDL2 -lorbital $("${PKG_CONFIG}" --libs osmesa) -lpng -lz -lm -lpthread -lstdc++"
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--disable-sdltest
|
|
)
|
|
cookbook_configure
|
|
"""
|