Port: less

This commit is contained in:
Christopher Dumas 2019-05-28 19:52:28 -07:00 committed by Andreas Kling
parent c1f8df5f86
commit 1c4882892c

17
Ports/less/less.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
PORT_DIR=less
INSTALLOPTS="DESTDIR=$SERENITY_ROOT/Root/"
function fetch() {
run_fetch_web "http://ftp.gnu.org/gnu/less/less-530.tar.gz"
}
function configure() {
run_configure_autotools
}
function build() {
run_make
}
function install() {
run_make_install
}
source ../.port_include.sh