1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

Ports: Remove bashisms and switch all scripts to /bin/sh.

This commit is contained in:
Larkin Nickle 2019-06-04 21:21:24 +00:00 committed by Andreas Kling
parent 800242ed4e
commit d080f6e8dd
10 changed files with 64 additions and 64 deletions

View file

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