Ports/cmatrix: Install binary to /usr/local/bin

This commit is contained in:
Tim Ledbetter 2023-08-13 09:01:59 +01:00 committed by Tim Schumacher
parent fd0efa0106
commit fe8c9aae23

View file

@ -9,7 +9,7 @@ files=(
) )
launcher_name=cmatrix launcher_name=cmatrix
launcher_category=Games launcher_category=Games
launcher_command=cmatrix launcher_command='/usr/local/bin/cmatrix'
launcher_run_in_terminal=true launcher_run_in_terminal=true
configure() { configure() {
@ -17,5 +17,6 @@ configure() {
} }
install() { install() {
run cp cmatrix "${SERENITY_INSTALL_ROOT}/bin" mkdir -p "${SERENITY_INSTALL_ROOT}/usr/local/bin"
run cp cmatrix "${SERENITY_INSTALL_ROOT}/usr/local/bin"
} }