mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
f318ab6bed
Fixes #5710.
17 lines
452 B
Bash
Executable File
17 lines
452 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=frotz
|
|
version=git
|
|
workdir=frotz-master
|
|
files="https://gitlab.com/DavidGriffith/frotz/-/archive/master/frotz-master.zip frotz-master.zip"
|
|
depends="ncurses"
|
|
|
|
build() {
|
|
run make \
|
|
PKG_CONFIG_CURSES=no \
|
|
CURSES_CFLAGS="-I${SERENITY_ROOT}/Build/Root/usr/local/include/ncurses" \
|
|
CURSES_LDFLAGS="-lncurses -ltinfo" \
|
|
CURSES=ncurses \
|
|
USE_UTF8=no \
|
|
nosound
|
|
}
|