mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 07:35:02 +03:00
4093952a6e
This update fixes the broken build on newer (Ubuntu) systems. It also contains a security fix.
29 lines
928 B
Bash
Executable File
29 lines
928 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='nethack'
|
|
version='3.6.7'
|
|
workdir="NetHack-${version}"
|
|
files="https://www.nethack.org/download/${version}/nethack-${version//.}-src.tgz nethack-${version//.}-src.tgz 98cf67df6debf9668a61745aa84c09bcab362e5d33f5b944ec5155d44d2aacb2"
|
|
auth_type='sha256'
|
|
depends=(
|
|
'ncurses'
|
|
'bash'
|
|
)
|
|
|
|
build() {
|
|
run sys/unix/setup.sh sys/unix/hints/serenity
|
|
if [ ! -f ${workdir}/util/makedefs.host ]; then
|
|
host_env
|
|
run make -C util makedefs "${makeopts[@]}"
|
|
run cp util/makedefs util/makedefs.host
|
|
run make -C util dgn_comp "${makeopts[@]}"
|
|
run cp util/dgn_comp util/dgn_comp.host
|
|
run make -C util lev_comp "${makeopts[@]}"
|
|
run cp util/lev_comp util/lev_comp.host
|
|
run make -C util dlb "${makeopts[@]}"
|
|
run cp util/dlb util/dlb.host
|
|
target_env
|
|
run make clean
|
|
fi
|
|
run make "${makeopts[@]}"
|
|
}
|