23 lines
400 B
Bash
Executable File
23 lines
400 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Clone ZRE repo
|
|
git clone $ZRE_REPO_WITH_PAT
|
|
./zre/process.sh
|
|
|
|
# Run N64Recomp
|
|
N64Recomp us.rev1.toml
|
|
RSPRecomp aspMain.us.rev1.toml
|
|
RSPRecomp njpgdspMain.us.rev1.toml
|
|
|
|
# Cleanup
|
|
rm -rf zre
|
|
|
|
# symlink N64Recomp to root (CMake needs it there)
|
|
# should be improved in the future
|
|
ln -s $(which N64Recomp) .
|
|
|
|
# Initialize submodules
|
|
git submodule update --init --recursive
|