Ports/cmatrix: Update formatting to be consistent with other ports

This commit is contained in:
Tim Ledbetter 2023-08-13 09:11:42 +01:00 committed by Tim Schumacher
parent fe8c9aae23
commit bb4e7c91ca

View file

@ -1,16 +1,20 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port=cmatrix port='cmatrix'
useconfigure=true useconfigure='true'
version=3112b127babe72d2222059edd2d7eb7fb8bddfb1 version='3112b127babe72d2222059edd2d7eb7fb8bddfb1'
depends=("ncurses") depends=(
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt") 'ncurses'
)
configopts=(
"-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
)
files=( files=(
"https://github.com/abishekvashok/cmatrix/archive/${version}.tar.gz a1d313d49a39cb5ae3a1c675872712f9f871114a161c38cbe94ce78967825f87" "https://github.com/abishekvashok/cmatrix/archive/${version}.tar.gz a1d313d49a39cb5ae3a1c675872712f9f871114a161c38cbe94ce78967825f87"
) )
launcher_name=cmatrix launcher_name='cmatrix'
launcher_category=Games launcher_category='Games'
launcher_command='/usr/local/bin/cmatrix' launcher_command='/usr/local/bin/cmatrix'
launcher_run_in_terminal=true launcher_run_in_terminal='true'
configure() { configure() {
run cmake "${configopts[@]}" run cmake "${configopts[@]}"