mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-05 00:56:39 +00:00
Ports/vitetris: Update formatting to be consistent with other ports
This commit is contained in:
parent
0e4f7d7f40
commit
629a6449c5
Notes:
sideshowbarker
2024-07-17 11:06:06 +09:00
Author: https://github.com/tcl3
Commit: 629a6449c5
Pull-request: https://github.com/SerenityOS/serenity/pull/20546
Reviewed-by: https://github.com/timschumi ✅
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