mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
New lua module: coxpcall
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
committed by
Peter Korsgaard
parent
a8495cdfcd
commit
13ec21c66c
8
package/coxpcall/Config.in
Normal file
8
package/coxpcall/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_COXPCALL
|
||||
bool "coxpcall"
|
||||
help
|
||||
Coxpcall encapsulates the protected calls with a coroutine
|
||||
based loop, so errors can be dealed without the usual
|
||||
pcall/xpcall issues with coroutines.
|
||||
|
||||
http://coxpcall.luaforge.net/
|
||||
20
package/coxpcall/coxpcall.mk
Normal file
20
package/coxpcall/coxpcall.mk
Normal file
@@ -0,0 +1,20 @@
|
||||
#############################################################
|
||||
#
|
||||
# coxpcall
|
||||
#
|
||||
#############################################################
|
||||
|
||||
COXPCALL_VERSION = 1.13.0
|
||||
COXPCALL_SITE = http://luaforge.net/frs/download.php/3406
|
||||
COXPCALL_DEPENDENCIES = lua
|
||||
|
||||
define COXPCALL_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0644 -D $(@D)/src/coxpcall.lua \
|
||||
$(TARGET_DIR)/usr/share/lua/coxpcall.lua
|
||||
endef
|
||||
|
||||
define COXPCALL_UNINSTALL_TARGET_CMDS
|
||||
rm -f "$(TARGET_DIR)/usr/share/lua/coxpcall.lua"
|
||||
endef
|
||||
|
||||
$(eval $(call GENTARGETS,package,coxpcall))
|
||||
Reference in New Issue
Block a user