1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 04:50:46 +00:00
serenity/Ports/sl/package.sh
2023-09-09 01:06:31 +02:00

13 lines
384 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#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
}