mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
2732545b4c
This is a preparation step for removing support for explicitly setting a download filename entirely.
12 lines
398 B
Bash
Executable file
12 lines
398 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=sl
|
|
version=git
|
|
workdir=sl-master
|
|
files=(
|
|
"https://github.com/mtoyoda/sl/archive/master.tar.gz master.tar.gz 3270434e28c4f4e15b8e98de60ea98508a7486485f52356a61f36ac5430fbc80"
|
|
)
|
|
depends=("ncurses")
|
|
|
|
build() {
|
|
run ${CC} -I${SERENITY_INSTALL_ROOT}/usr/local/include/ncurses -L${SERENITY_INSTALL_ROOT}/usr/local/lib -o sl sl.c -lncurses -ltinfo
|
|
}
|