gamepkg_base/bootstrap.toml
2025-04-06 02:02:06 +02:00

24 lines
532 B
TOML

[ask]
platform = { kind = "selection", prompt = "Game Platform", options = ["wine", "wiiu"] }
name = { kind = "text", prompt = "Game Name?" }
desc = { kind = "text", prompt = "Game Description?" }
[[actions.replace]]
from = "<GAME_TITLE>"
to_var = "name"
[[actions.replace]]
from = "<GAME_DESC>"
to_var = "desc"
[[actions.branch]]
when = { var = "platform", eq = "wine"}
branch = "wine"
[[actions.branch]]
when = { var = "platform", eq = "wiiu"}
branch = "wiiu"
[[actions.script]]
script = "setup.sh"
expose = ["name", "desc"]