mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
17 lines
643 B
Bash
Executable file
17 lines
643 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=angband
|
|
version=4.2.3
|
|
workdir="Angband-${version}"
|
|
useconfigure=true
|
|
files="https://github.com/angband/angband/releases/download/${version}/Angband-${version}.tar.gz Angband-${version}.tar.gz 833c4f8cff2aee61ad015f9346fceaa4a8c739fe2dbe5bd1acd580c91818e6bb"
|
|
auth_type=sha256
|
|
depends=("ncurses")
|
|
configopts=(
|
|
"--prefix=/usr/local"
|
|
"--bindir=/usr/local/bin"
|
|
"--disable-x11"
|
|
"--enable-curses"
|
|
"--with-ncurses-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
|
"CFLAGS=--sysroot=${SERENITY_INSTALL_ROOT} -I${SERENITY_INSTALL_ROOT}/usr/local/include/ncursesw"
|
|
"LIBS=-lncursesw"
|
|
)
|