2021-04-03 17:38:52 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=cmatrix
|
|
|
|
useconfigure=true
|
2021-11-03 21:12:59 +03:00
|
|
|
version=3112b127babe72d2222059edd2d7eb7fb8bddfb1
|
2021-09-27 01:16:18 +03:00
|
|
|
depends=("ncurses")
|
|
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
2021-11-03 21:12:59 +03:00
|
|
|
files="https://github.com/abishekvashok/cmatrix/archive/${version}.tar.gz ${port}-${version}.tar.gz a1d313d49a39cb5ae3a1c675872712f9f871114a161c38cbe94ce78967825f87"
|
2021-04-25 13:20:15 +03:00
|
|
|
auth_type=sha256
|
2021-04-20 19:36:03 +03:00
|
|
|
launcher_name=cmatrix
|
|
|
|
launcher_category=Games
|
2021-07-20 00:08:08 +03:00
|
|
|
launcher_command=cmatrix
|
|
|
|
launcher_run_in_terminal=true
|
2021-04-03 17:38:52 +03:00
|
|
|
|
|
|
|
configure() {
|
2021-09-27 01:16:18 +03:00
|
|
|
run cmake "${configopts[@]}"
|
2021-04-03 17:38:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
2021-04-20 18:42:04 +03:00
|
|
|
run cp cmatrix "${SERENITY_INSTALL_ROOT}/bin"
|
2021-04-03 17:38:52 +03:00
|
|
|
}
|