2021-04-03 17:38:52 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=cmatrix
|
|
|
|
useconfigure=true
|
|
|
|
version=git
|
|
|
|
depends="ncurses"
|
|
|
|
workdir=cmatrix-master
|
2021-04-20 03:51:04 +03:00
|
|
|
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_SOURCE_DIR/Toolchain/CMake/CMakeToolchain.txt"
|
2021-04-25 13:20:15 +03:00
|
|
|
files="https://github.com/abishekvashok/cmatrix/archive/refs/heads/master.zip cmatrix.zip c32ca7562e58fb1fd7a96ebdfbe51c5de060709d39b67fce3c0bc42547e0ccb2"
|
|
|
|
auth_type=sha256
|
2021-04-20 19:36:03 +03:00
|
|
|
launcher_name=cmatrix
|
|
|
|
launcher_category=Games
|
|
|
|
launcher_command="Terminal -e cmatrix"
|
2021-04-03 17:38:52 +03:00
|
|
|
|
|
|
|
configure() {
|
|
|
|
run cmake $configopts
|
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
2021-04-20 18:42:04 +03:00
|
|
|
run cp cmatrix "${SERENITY_INSTALL_ROOT}/bin"
|
2021-04-03 17:38:52 +03:00
|
|
|
}
|