summaryrefslogtreecommitdiff
path: root/Ports/lua/lua.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Ports/lua/lua.sh')
-rwxr-xr-xPorts/lua/lua.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/Ports/lua/lua.sh b/Ports/lua/lua.sh
deleted file mode 100755
index 924ca408ac..0000000000
--- a/Ports/lua/lua.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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