ladybird/Ports/cfunge/package.sh

21 lines
452 B
Bash
Raw Normal View History

#!/usr/bin/env -S bash ../.port_include.sh
2022-07-08 04:44:22 +03:00
port='cfunge'
version='2bc4fb27ade2a816ca9a90a6d9f6958111123fa9'
useconfigure='true'
2023-07-10 14:10:29 +03:00
files=(
"https://github.com/VorpalBlade/cfunge/archive/${version}.zip 364994a890ed1083684956db576a2a5cfb94b3117bae868910d6a75111033f55"
2023-07-10 14:10:29 +03:00
)
2022-07-08 04:44:22 +03:00
configure() {
run cmake -B build "${configopts[@]}"
}
2022-07-08 04:44:22 +03:00
build() {
run make -C build "${makeopts[@]}"
}
install() {
2022-07-08 04:44:22 +03:00
run cp build/cfunge "${SERENITY_INSTALL_ROOT}/bin"
}