ladybird/Ports/links/links.sh
Robin Burchell b7d315319d Ports: Add links
Doesn't actually run yet. in_term's read() fails with EFAULT for reasons that
are presently beyond me, points to a bug in Serenity.
2019-05-28 20:06:47 +02:00

17 lines
352 B
Bash
Executable File

#!/bin/sh
PORT_DIR=links
function fetch() {
run_fetch_web "http://links.twibright.com/download/links-2.19.tar.bz2"
}
function configure() {
run_export_env CC i686-pc-serenity-gcc
run_configure_autotools
}
function build() {
run_make
}
function install() {
run_make_install DESTDIR="$SERENITY_ROOT"/Root
}
source ../.port_include.sh