1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 14:27:34 +00:00

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.
This commit is contained in:
Robin Burchell 2019-05-28 18:55:49 +02:00 committed by Andreas Kling
parent 674be46afd
commit b7d315319d
2 changed files with 33 additions and 0 deletions

16
Ports/links/links.sh Executable file
View file

@ -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