From 1c4882892c45190b6d406a0dbb70803c2e025afc Mon Sep 17 00:00:00 2001 From: Christopher Dumas Date: Tue, 28 May 2019 19:52:28 -0700 Subject: [PATCH] Port: less --- Ports/less/less.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 Ports/less/less.sh diff --git a/Ports/less/less.sh b/Ports/less/less.sh new file mode 100755 index 0000000000..808d08405d --- /dev/null +++ b/Ports/less/less.sh @@ -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