diff options
Diffstat (limited to 'Ports/links/links.sh')
-rwxr-xr-x | Ports/links/links.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Ports/links/links.sh b/Ports/links/links.sh new file mode 100755 index 0000000000..29a74aac6f --- /dev/null +++ b/Ports/links/links.sh @@ -0,0 +1,16 @@ +#!/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 |