mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
19 lines
475 B
Bash
Executable file
19 lines
475 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port='cfunge'
|
|
version='2bc4fb27ade2a816ca9a90a6d9f6958111123fa9'
|
|
useconfigure='true'
|
|
files="https://codeload.github.com/VorpalBlade/cfunge/zip/${version} cfunge.zip 364994a890ed1083684956db576a2a5cfb94b3117bae868910d6a75111033f55"
|
|
auth_type='sha256'
|
|
|
|
configure() {
|
|
run cmake -B build "${configopts[@]}"
|
|
}
|
|
|
|
build() {
|
|
run make -C build "${makeopts[@]}"
|
|
}
|
|
|
|
install() {
|
|
run cp build/cfunge "${SERENITY_INSTALL_ROOT}/bin"
|
|
}
|