serenity/Ports/cmatrix/package.sh

22 lines
597 B
Bash
Raw Normal View History

2021-04-03 14:38:52 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
port=cmatrix
useconfigure=true
version=git
depends=("ncurses")
2021-04-03 14:38:52 +00:00
workdir=cmatrix-master
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
files="https://github.com/abishekvashok/cmatrix/archive/refs/heads/master.zip cmatrix.zip c32ca7562e58fb1fd7a96ebdfbe51c5de060709d39b67fce3c0bc42547e0ccb2"
auth_type=sha256
launcher_name=cmatrix
launcher_category=Games
launcher_command=cmatrix
launcher_run_in_terminal=true
2021-04-03 14:38:52 +00:00
configure() {
run cmake "${configopts[@]}"
2021-04-03 14:38:52 +00:00
}
install() {
run cp cmatrix "${SERENITY_INSTALL_ROOT}/bin"
2021-04-03 14:38:52 +00:00
}