mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
c07f91474d
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
21 lines
597 B
Bash
Executable file
21 lines
597 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=cmatrix
|
|
useconfigure=true
|
|
version=git
|
|
depends=("ncurses")
|
|
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
|
|
|
|
configure() {
|
|
run cmake "${configopts[@]}"
|
|
}
|
|
|
|
install() {
|
|
run cp cmatrix "${SERENITY_INSTALL_ROOT}/bin"
|
|
}
|