mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-01 20:10:28 +00:00
Port: less
This commit is contained in:
parent
c1f8df5f86
commit
1c4882892c
Notes:
sideshowbarker
2024-07-19 13:51:25 +09:00
Author: https://github.com/alexispurslane Commit: https://github.com/SerenityOS/serenity/commit/1c4882892c4 Pull-request: https://github.com/SerenityOS/serenity/pull/141 Reviewed-by: https://github.com/awesomekling
1 changed files with 17 additions and 0 deletions
17
Ports/less/less.sh
Executable file
17
Ports/less/less.sh
Executable 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
|
Loading…
Reference in a new issue