mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
17 lines
457 B
Bash
Executable File
17 lines
457 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/i686/Root/usr/local/include/ncurses" \
|
|
CURSES_LDFLAGS="-lncurses -ltinfo" \
|
|
CURSES=ncurses \
|
|
USE_UTF8=no \
|
|
nosound
|
|
}
|