diff options
author | Christopher Dumas <christopherdumas@gmail.com> | 2019-05-28 19:52:28 -0700 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-29 05:39:03 +0200 |
commit | 1c4882892c45190b6d406a0dbb70803c2e025afc (patch) | |
tree | 54c399b81c5c2e321abd5a8cd125502d1703e796 /Ports | |
parent | c1f8df5f865f6a931ca11c6d15f438d9aeccb182 (diff) | |
download | serenity-1c4882892c45190b6d406a0dbb70803c2e025afc.zip |
Port: less
Diffstat (limited to 'Ports')
-rwxr-xr-x | Ports/less/less.sh | 17 |
1 files changed, 17 insertions, 0 deletions
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 |