mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 05:27:45 +00:00
16 lines
408 B
Bash
Executable file
16 lines
408 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_ROOT/Toolchain/CMakeToolchain.txt"
|
|
files="https://github.com/abishekvashok/cmatrix/archive/refs/heads/master.zip cmatrix.zip"
|
|
|
|
configure() {
|
|
run cmake $configopts
|
|
}
|
|
|
|
install() {
|
|
run cp cmatrix "${SERENITY_BUILD_DIR}/Root/bin"
|
|
}
|