ladybird/Ports/frotz/package.sh

18 lines
503 B
Bash
Raw Normal View History

2021-01-22 19:44:05 +03:00
#!/usr/bin/env -S bash ../.port_include.sh
port='frotz'
version='2.54'
2023-07-10 14:10:29 +03:00
files=(
"https://gitlab.com/DavidGriffith/frotz/-/archive/${version}/frotz-${version}.tar.bz2#756d7e11370c9c8e61573e350e2a5071e77fd2781be74c107bd432f817f3abc7"
2023-07-10 14:10:29 +03:00
)
depends=("ncurses")
2020-04-19 03:10:41 +03:00
build() {
run make \
PKG_CONFIG_CURSES=no \
CURSES_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/ncurses" \
2020-04-19 03:10:41 +03:00
CURSES_LDFLAGS="-lncurses -ltinfo" \
CURSES=ncurses \
USE_UTF8=no \
nosound
}