1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 11:20:46 +00:00

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_category=Games
launcher_command=cmatrix
launcher_command='/usr/local/bin/cmatrix'
launcher_run_in_terminal=true
configure() {
@ -17,5 +17,6 @@ configure() {
}
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"
}