blob: 4d8ef0afb6a3e9fc03d6202b84138c6c1339eabe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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
|