2021-03-21 00:34:53 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=vitetris
|
|
|
|
useconfigure="true"
|
|
|
|
version="0.59.1"
|
2023-07-10 14:10:29 +03:00
|
|
|
files=(
|
2023-08-07 14:49:25 +03:00
|
|
|
"https://github.com/vicgeralds/vitetris/archive/refs/tags/v${version}.tar.gz v${version}.tar.gz 699443df03c8d4bf2051838c1015da72039bbbdd0ab0eede891c59c840bdf58d"
|
2023-07-10 14:10:29 +03:00
|
|
|
)
|
2021-09-27 01:16:18 +03:00
|
|
|
configopts=("--without-xlib" "--without-joystick" "--without-network")
|
2021-04-20 19:36:03 +03:00
|
|
|
launcher_name=vitetris
|
|
|
|
launcher_category=Games
|
2021-07-20 00:08:08 +03:00
|
|
|
launcher_command=tetris
|
|
|
|
launcher_run_in_terminal=true
|
2021-03-21 00:34:53 +03:00
|
|
|
|
|
|
|
configure() {
|
|
|
|
run chmod +x "$configscript"
|
2021-09-27 01:16:18 +03:00
|
|
|
run ./"$configscript" "${configopts[@]}"
|
2021-03-21 00:34:53 +03:00
|
|
|
}
|