New lua module: copas

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:52:27 -03:00 committed by Peter Korsgaard
parent b9b76f7441
commit bfce1e4cbc
4 changed files with 32 additions and 1 deletions

View File

@ -4,7 +4,8 @@
New GTK-based configurator, usable using 'make gconfig'.
New packages: cgilua, coxpcall, luafilesystem, luasocket, rings
New packages: cgilua, copas, coxpcall, luafilesystem,
luasocket, rings
Updated/fixed packages: cdrkit, libidn, netperf

View File

@ -209,6 +209,7 @@ source "package/java/jamvm/Config.in"
source "package/lua/Config.in"
if BR2_PACKAGE_LUA
source "package/cgilua/Config.in"
source "package/copas/Config.in"
source "package/coxpcall/Config.in"
source "package/luafilesystem/Config.in"
source "package/luasocket/Config.in"

9
package/copas/Config.in Normal file
View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_COPAS
bool "copas"
select BR2_PACKAGE_COXPCALL
select BR2_PACKAGE_LUASOCKET
help
Copas is a dispatcher based on coroutines that
can be used by TCP/IP servers.
http://keplerproject.github.com/copas/

20
package/copas/copas.mk Normal file
View File

@ -0,0 +1,20 @@
#############################################################
#
# copas
#
#############################################################
COPAS_VERSION = 1.1.6
COPAS_SITE = http://github.com/downloads/keplerproject/copas
COPAS_DEPENDENCIES = lua coxpcall luasocket
define COPAS_INSTALL_TARGET_CMDS
$(INSTALL) -m 0644 -D $(@D)/src/copas/copas.lua \
$(TARGET_DIR)/usr/share/lua/copas.lua
endef
define COPAS_UNINSTALL_TARGET_CMDS
rm -f "$(TARGET_DIR)/usr/share/lua/copas.lua"
endef
$(eval $(call GENTARGETS,package,copas))