mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
Ports/vitetris: Update formatting to be consistent with other ports
This commit is contained in:
parent
0e4f7d7f40
commit
629a6449c5
1 changed files with 13 additions and 9 deletions
|
@ -1,17 +1,21 @@
|
||||||
#!/usr/bin/env -S bash ../.port_include.sh
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
port=vitetris
|
port='vitetris'
|
||||||
useconfigure="true"
|
useconfigure='true'
|
||||||
version="0.59.1"
|
version='0.59.1'
|
||||||
files=(
|
files=(
|
||||||
"https://github.com/vicgeralds/vitetris/archive/refs/tags/v${version}.tar.gz 699443df03c8d4bf2051838c1015da72039bbbdd0ab0eede891c59c840bdf58d"
|
"https://github.com/vicgeralds/vitetris/archive/refs/tags/v${version}.tar.gz 699443df03c8d4bf2051838c1015da72039bbbdd0ab0eede891c59c840bdf58d"
|
||||||
)
|
)
|
||||||
configopts=("--without-xlib" "--without-joystick" "--without-network")
|
configopts=(
|
||||||
launcher_name=vitetris
|
'--without-xlib'
|
||||||
launcher_category=Games
|
'--without-joystick'
|
||||||
|
'--without-network'
|
||||||
|
)
|
||||||
|
launcher_name='vitetris'
|
||||||
|
launcher_category='Games'
|
||||||
launcher_command='/usr/local/bin/tetris'
|
launcher_command='/usr/local/bin/tetris'
|
||||||
launcher_run_in_terminal=true
|
launcher_run_in_terminal='true'
|
||||||
|
|
||||||
configure() {
|
configure() {
|
||||||
run chmod +x "$configscript"
|
run chmod +x "${configscript}"
|
||||||
run ./"$configscript" "${configopts[@]}"
|
run "./${configscript}" "${configopts[@]}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue