mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-10 13:38:43 +08:00
23 lines
487 B
TOML
23 lines
487 B
TOML
[source]
|
|
git = "https://github.com/jackpot51/sm64ex.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"liborbital",
|
|
"llvm",
|
|
"mesa",
|
|
"sdl2",
|
|
"zlib",
|
|
]
|
|
script = """
|
|
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|
# You must find your own ROM
|
|
cp -v "${COOKBOOK_RECIPE}/baserom.us.z64" baserom.us.z64
|
|
|
|
export CROSS="${TARGET}-"
|
|
"${COOKBOOK_MAKE}" -j "${COOKBOOK_MAKE_JOBS}"
|
|
mkdir -p "${COOKBOOK_STAGE}/bin"
|
|
cp -v build/us_pc/sm64.us.f3dex2e "${COOKBOOK_STAGE}/bin/sm64"
|
|
"""
|