Skip to content
Snippets Groups Projects
Unverified Commit edf6930c authored by Ian Douglas Scott's avatar Ian Douglas Scott
Browse files

Recipe for Lua

parent f1e261f8
No related branches found
No related tags found
1 merge request!4Recipe for Lua
diff -rupN lua/src/Makefile lua-redox/src/Makefile
--- lua/src/Makefile 2015-05-27 04:10:11.000000000 -0700
+++ lua-redox/src/Makefile 2016-07-27 18:08:54.167232304 -0700
@@ -4,9 +4,9 @@
# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT =======================
# Your platform. See PLATS for possible values.
-PLAT= none
+PLAT= posix
-CC= gcc -std=gnu99
+CC:= $(CC) -std=gnu99
CFLAGS= -O2 -Wall -Wextra -DLUA_COMPAT_5_2 $(SYSCFLAGS) $(MYCFLAGS)
LDFLAGS= $(SYSLDFLAGS) $(MYLDFLAGS)
LIBS= -lm $(SYSLIBS) $(MYLIBS)
VERSION=5.3.1
SRC=http://www.lua.org/ftp/lua-$VERSION.tar.gz
DIR=lua-$VERSION
function recipe_version {
echo "$VERSION"
return 1
}
function recipe_update {
echo "skipping update"
return 1
}
function recipe_build {
make generic
return 1
}
function recipe_test {
echo "skipping test"
return 1
}
function recipe_clean {
make clean
return 1
}
function recipe_stage {
mkdir -pv "$1/bin"
cp src/lua src/luac "$1/bin"
return 1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment