mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
17 lines
503 B
Bash
Executable file
17 lines
503 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='frotz'
|
|
version='2.54'
|
|
files=(
|
|
"https://gitlab.com/DavidGriffith/frotz/-/archive/${version}/frotz-${version}.tar.bz2#756d7e11370c9c8e61573e350e2a5071e77fd2781be74c107bd432f817f3abc7"
|
|
)
|
|
depends=("ncurses")
|
|
|
|
build() {
|
|
run make \
|
|
PKG_CONFIG_CURSES=no \
|
|
CURSES_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/ncurses" \
|
|
CURSES_LDFLAGS="-lncurses -ltinfo" \
|
|
CURSES=ncurses \
|
|
USE_UTF8=no \
|
|
nosound
|
|
}
|