mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
17 lines
476 B
Bash
Executable file
17 lines
476 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=awk
|
|
version=20220122
|
|
useconfigure="false"
|
|
files="https://github.com/onetrueawk/awk/archive/refs/tags/${version}.tar.gz awk-${version}.tar.gz 720a06ff8dcc12686a5176e8a4c74b1295753df816e38468a6cf077562d54042"
|
|
auth_type=sha256
|
|
patchlevel=1
|
|
|
|
build() {
|
|
run make "${makeopts[@]}"
|
|
run mv a.out awk
|
|
}
|
|
|
|
install() {
|
|
run mkdir -p ${SERENITY_INSTALL_ROOT}/usr/local/bin/
|
|
run cp awk ${SERENITY_INSTALL_ROOT}/usr/local/bin/
|
|
}
|