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