serenity/Ports/ncurses/ncurses.sh
2019-05-28 20:05:22 +02:00

18 lines
358 B
Bash
Executable file

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