Add eduke32 manifest and icon

This commit is contained in:
Jeremy Soller 2022-11-15 15:57:11 -07:00
parent 9fcbe74846
commit 7eef19588d
No known key found for this signature in database
GPG Key ID: 87F211AF2BE4C2FE
3 changed files with 13 additions and 3 deletions

BIN
recipes/eduke32/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

4
recipes/eduke32/manifest Normal file
View File

@ -0,0 +1,4 @@
name=EDuke32
binary=/games/eduke32
icon=/ui/icons/apps/eduke32.png

View File

@ -23,9 +23,15 @@ function recipe_clean {
}
function recipe_stage {
dest="$(realpath $1)"
mkdir -pv "$1/games"
cp ./eduke32 "$1/games/eduke32"
cp ./mapster32 "$1/games/mapster32"
cp -v ./eduke32 "$1/games/eduke32"
cp -v ./mapster32 "$1/games/mapster32"
mkdir -pv "$1/ui/apps"
cp -v "${COOKBOOK_RECIPE}/manifest" "$1/ui/apps/eduke32"
mkdir -pv "$1/ui/icons/apps"
cp -v "${COOKBOOK_RECIPE}/icon.png" "$1/ui/icons/apps/eduke32.png"
skip=1
}