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:
Gustavo Zacarias
2010-05-10 14:46:24 -03:00
committed by Peter Korsgaard
parent a8495cdfcd
commit 13ec21c66c
4 changed files with 30 additions and 1 deletions

View 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/

View 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))