mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 02:28:45 +08:00
23 lines
395 B
Bash
23 lines
395 B
Bash
GIT=https://gitlab.redox-os.org/redox-os/openttd-openmsx.git
|
|
|
|
function recipe_version {
|
|
echo "0.3.1"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
echo "skipping build"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_clean {
|
|
echo "skipping clean"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
mkdir -pv "$1/share/games/openttd/baseset/openmsx"
|
|
cp -Rv ./* "$1/share/games/openttd/baseset/openmsx"
|
|
skip=1
|
|
}
|