20 lines
448 B
TOML
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"]
|