mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
17 lines
504 B
Bash
Executable file
17 lines
504 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 eeaad3d51354491b07c7f30384c0cede"
|
|
auth_type=md5
|
|
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
|
|
}
|