1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:37:47 +00:00

Ports: Added a cmatrix port

This commit is contained in:
Manuel Palenzuela 2021-04-03 16:38:52 +02:00 committed by Andreas Kling
parent 5c67b2cb8f
commit d09cd85b6c
4 changed files with 57 additions and 0 deletions

16
Ports/cmatrix/package.sh Executable file
View file

@ -0,0 +1,16 @@
#!/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"
}