1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 11:27:35 +00:00
serenity/Ports/ncurses/ncurses.sh

18 lines
317 B
Bash
Executable file

#!/bin/sh
PORT_DIR=ncurses
INSTALLOPTS="DESTDIR=$SERENITY_ROOT/Root/"
fetch() {
run_fetch_git "https://github.com/mirror/ncurses.git"
run_patch allow-serenity-os-ncurses.patch -p1
}
configure() {
run_configure_autotools
}
build() {
run_make
}
install() {
run_make_install
}
. ../.port_include.sh