1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:27:45 +00:00
serenity/Ports/cmatrix/package.sh
2021-04-03 18:55:02 +02:00

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"
}