mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
16 lines
311 B
Bash
Executable file
16 lines
311 B
Bash
Executable file
#!/bin/sh
|
|
PORT_DIR=links
|
|
fetch() {
|
|
run_fetch_web "http://links.twibright.com/download/links-2.19.tar.bz2"
|
|
}
|
|
configure() {
|
|
run_export_env CC i686-pc-serenity-gcc
|
|
run_configure_autotools
|
|
}
|
|
build() {
|
|
run_make
|
|
}
|
|
install() {
|
|
run_make_install DESTDIR="$SERENITY_ROOT"/Root
|
|
}
|
|
. ../.port_include.sh
|