mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
25 lines
413 B
TOML
25 lines
413 B
TOML
[source]
|
|
git = "https://github.com/jackpot51/libretro-super.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"zlib",
|
|
]
|
|
script = """
|
|
CORES=(
|
|
snes9x
|
|
)
|
|
|
|
pushd "${COOKBOOK_SOURCE}"
|
|
./libretro-fetch.sh "${CORES[@]}"
|
|
popd
|
|
|
|
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|
|
|
export platform=Redox
|
|
export STATIC_LINKING=1
|
|
./libretro-build.sh "${CORES[@]}"
|
|
./libretro-install.sh "${COOKBOOK_STAGE}/share/libretro"
|
|
"""
|