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

20 lines
448 B
TOML

[ask]
platform = { kind = "selection", prompt = "Game Platform", options = ["wine"] }
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.script]]
script = "setup.sh"
expose = ["name", "desc"]