summaryrefslogtreecommitdiff
path: root/repo/system/luajit
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/luajit')
-rw-r--r--repo/system/luajit/luajit.xibuild32
-rw-r--r--repo/system/luajit/module-paths.patch25
2 files changed, 0 insertions, 57 deletions
diff --git a/repo/system/luajit/luajit.xibuild b/repo/system/luajit/luajit.xibuild
deleted file mode 100644
index 09f6015..0000000
--- a/repo/system/luajit/luajit.xibuild
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="musl lua5-1"
-
-PKG_VER=2.1
-SUBVER=20220310
-SOURCE=https://github.com/openresty/luajit2/archive/refs/tags/v$PKG_VER-$SUBVER.tar.gz
-ADDITIONAL="
-module-paths.patch
-"
-
-DESC="OpenResty's branch of LuaJIT"
-
-prepare () {
- apply_patches
-}
-
-build () {
- local xcflags="-DLUAJIT_ENABLE_LUA52COMPAT -DLUAJIT_NUMMODE=2"
- [ "$CARCH" = x86_64 ] && xcflags="$xcflags -msse4.2"
- make amalg PREFIX=/usr XCFLAGS="$xcflags"
-
-}
-
-package () {
- make install DESTDIR="$PKG_DEST" PREFIX=/usr
-
- install -Dm644 COPYRIGHT \
- $PKG_DEST/usr/share/licenses/luajit/COPYRIGHT
-
-}
diff --git a/repo/system/luajit/module-paths.patch b/repo/system/luajit/module-paths.patch
deleted file mode 100644
index 46e8d12..0000000
--- a/repo/system/luajit/module-paths.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Add /usr/share/lua/common to LUA_PATH. We use this directory for Lua modules
-that are compatible with Lua 5.1 and newer.
-
---- a/src/luaconf.h
-+++ b/src/luaconf.h
-@@ -42,8 +42,10 @@
- #ifdef LUA_ROOT
- #define LUA_JROOT LUA_ROOT
- #define LUA_RLDIR LUA_ROOT "/share" LUA_LUADIR
-+#define LUA_RLDIR2 LUA_ROOT "/share/lua/common/"
- #define LUA_RCDIR LUA_ROOT "/" LUA_MULTILIB LUA_LUADIR
- #define LUA_RLPATH ";" LUA_RLDIR "?.lua;" LUA_RLDIR "?/init.lua"
-+#define LUA_RLPATH2 ";" LUA_RLDIR2 "?.lua;" LUA_RLDIR2 "?/init.lua"
- #define LUA_RCPATH ";" LUA_RCDIR "?.so"
- #else
- #define LUA_JROOT LUA_LROOT
-@@ -58,7 +60,7 @@
- #define LUA_LCPATH1 ";" LUA_LCDIR "?.so"
- #define LUA_LCPATH2 ";" LUA_LCDIR "loadall.so"
-
--#define LUA_PATH_DEFAULT "./?.lua" LUA_JPATH LUA_LLPATH LUA_RLPATH
-+#define LUA_PATH_DEFAULT "./?.lua" LUA_JPATH LUA_LLPATH LUA_RLPATH LUA_RLPATH2
- #define LUA_CPATH_DEFAULT "./?.so" LUA_LCPATH1 LUA_RCPATH LUA_LCPATH2
- #endif
-