mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
16 lines
539 B
Bash
Executable file
16 lines
539 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 frotz-${version}.tar.bz2 bdf9131e6de49108c9f032200cea3cb4011e5ca0c9fbdbf5b0c05f7c56c81395"
|
|
auth_type='sha256'
|
|
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
|
|
}
|