ljsyscall: new package
An FFI implementation of the Linux and NetBSD kernel ABIs for LuaJIT. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
493e2f0bd5
commit
95f72b283e
@ -369,6 +369,7 @@ source "package/cgilua/Config.in"
|
||||
source "package/copas/Config.in"
|
||||
source "package/coxpcall/Config.in"
|
||||
source "package/lbase64/Config.in"
|
||||
source "package/ljsyscall/Config.in"
|
||||
source "package/lua-cjson/Config.in"
|
||||
source "package/lua-ev/Config.in"
|
||||
source "package/lua-msgpack-native/Config.in"
|
||||
|
14
package/ljsyscall/Config.in
Normal file
14
package/ljsyscall/Config.in
Normal file
@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_LJSYSCALL
|
||||
bool "ljsyscall"
|
||||
# ljsyscall is specifically for LuaJIT, not Lua.
|
||||
depends on BR2_PACKAGE_LUAJIT
|
||||
# ljsyscall is only available for some target architectures
|
||||
depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_arm || BR2_armeb
|
||||
help
|
||||
An FFI implementation of the Linux and NetBSD kernel ABIs for LuaJIT.
|
||||
|
||||
http://github.com/justincormack/ljsyscall
|
||||
|
||||
comment "ljsyscall needs LuaJIT"
|
||||
depends on !BR2_PACKAGE_LUAJIT && (BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_arm || BR2_armeb)
|
||||
|
37
package/ljsyscall/ljsyscall.mk
Normal file
37
package/ljsyscall/ljsyscall.mk
Normal file
@ -0,0 +1,37 @@
|
||||
################################################################################
|
||||
#
|
||||
# ljsyscall
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LJSYSCALL_VERSION = v0.9
|
||||
LJSYSCALL_SITE = $(call github,justincormack,ljsyscall,$(LJSYSCALL_VERSION))
|
||||
LJSYSCALL_LICENSE = MIT
|
||||
LJSYSCALL_LICENSE_FILES = COPYRIGHT
|
||||
|
||||
ifeq ($(BR2_i386),y)
|
||||
LJSYSCALL_ARCH = x86
|
||||
else ifeq ($(BR2_x86_64),y)
|
||||
LJSYSCALL_ARCH = x64
|
||||
else ifeq ($(BR2_powerpc),y)
|
||||
LJSYSCALL_ARCH = ppc
|
||||
else ifeq ($(LJSYSCALL_ARCH),)
|
||||
LJSYSCALL_ARCH = $(BR2_ARCH)
|
||||
endif
|
||||
|
||||
LJSYSCALL_TARGET_DIR = $(TARGET_DIR)/usr/share/luajit-$(LUAJIT_VERSION)
|
||||
|
||||
define LJSYSCALL_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -d $(LJSYSCALL_TARGET_DIR)/syscall
|
||||
$(INSTALL) -m 0644 -t $(LJSYSCALL_TARGET_DIR)/ $(@D)/syscall.lua
|
||||
$(INSTALL) -m 0644 -t $(LJSYSCALL_TARGET_DIR)/syscall $(@D)/syscall/*.lua
|
||||
|
||||
$(INSTALL) -d $(LJSYSCALL_TARGET_DIR)/syscall/linux/$(LJSYSCALL_ARCH)
|
||||
$(INSTALL) -m 0644 -t $(LJSYSCALL_TARGET_DIR)/syscall/linux/ $(@D)/syscall/linux/*.lua
|
||||
$(INSTALL) -m 0644 -t $(LJSYSCALL_TARGET_DIR)/syscall/linux/$(LJSYSCALL_ARCH) $(@D)/syscall/linux/$(LJSYSCALL_ARCH)/*.lua
|
||||
|
||||
$(INSTALL) -d $(LJSYSCALL_TARGET_DIR)/syscall/shared
|
||||
$(INSTALL) -m 0644 -t $(LJSYSCALL_TARGET_DIR)/syscall/shared/ $(@D)/syscall/shared/*.lua
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user