mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 15:43:36 +03:00
b7d315319d
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.
17 lines
352 B
Bash
Executable File
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
|