mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 05:14:18 +08:00
Add freedoom recipe
This commit is contained in:
parent
90ed0920d6
commit
da6ce5dd01
33
recipes/freedoom/recipe.sh
Normal file
33
recipes/freedoom/recipe.sh
Normal file
@ -0,0 +1,33 @@
|
||||
GIT=https://github.com/redox-os/freedoom.git
|
||||
|
||||
function recipe_version {
|
||||
echo "0.0.1"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_update {
|
||||
echo "skipping update"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_build {
|
||||
echo "skipping build"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_test {
|
||||
echo "skipping test"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_clean {
|
||||
echo "skipping clean"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_stage {
|
||||
mkdir -pv "$1/share/games/doom"
|
||||
cp -Rv ./*.wad "$1/share/games/doom"
|
||||
skip=1
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user