mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-05 17:46:52 +00:00
24 lines
414 B
Bash
Executable file
24 lines
414 B
Bash
Executable file
#!/bin/sh
|
|
PORT_DIR=lua
|
|
MAKEOPTS='generic'
|
|
|
|
INSTALLOPTS="INSTALL_TOP=$SERENITY_ROOT/Root/"
|
|
|
|
fetch() {
|
|
run_fetch_web "http://www.lua.org/ftp/lua-5.3.5.tar.gz"
|
|
run_patch lua.patch -p1
|
|
}
|
|
configure() {
|
|
run_export_env CC i686-pc-serenity-gcc
|
|
}
|
|
run_make() {
|
|
run_command make $MAKEOPTS "$@"
|
|
}
|
|
|
|
build() {
|
|
run_make
|
|
}
|
|
install() {
|
|
run_make_install DESTDIR="$SERENITY_ROOT"/Root
|
|
}
|
|
. ../.port_include.sh
|