vvvvvv: fix source directory

This commit is contained in:
Jeremy Soller 2026-01-29 13:46:14 -07:00
parent 58bdc32eb9
commit 2ee6f8a18d
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA

View File

@ -5,11 +5,6 @@ upstream = "https://github.com/TerryCavanagh/VVVVVV"
branch = "redox"
script = "COOKBOOK_SOURCE=${COOKBOOK_SOURCE}/desktop_version"
[build]
template = "cmake"
cmakeflags = [
"-DSDL2_INCLUDE_DIRS=${COOKBOOK_SYSROOT}/include/SDL2",
"-DSDL2_LIBRARIES="-lSDL2main -lSDL2_mixer -lSDL2 $(${TARGET}-pkg-config --libs glu) -lorbital -lz -lvorbisfile -lvorbis -logg" .",
]
dependencies = [
"sdl2-image",
"sdl2-mixer",
@ -21,3 +16,10 @@ dependencies = [
"libogg",
"libvorbis",
]
template = "custom"
script = """
COOKBOOK_SOURCE="${COOKBOOK_SOURCE}/desktop_version"
cookbook_cmake \
-DSDL2_INCLUDE_DIRS="${COOKBOOK_SYSROOT}/include/SDL2" \
-DSDL2_LIBRARIES="-lSDL2main -lSDL2_mixer -lSDL2 $(${TARGET}-pkg-config --libs glu) -lorbital -lz -lvorbisfile -lvorbis -logg"
"""