New lua module: xavante

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:56:24 -03:00 committed by Peter Korsgaard
parent e5d578a6e2
commit db7b084470
4 changed files with 39 additions and 1 deletions

View File

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

View File

@ -215,6 +215,7 @@ source "package/luafilesystem/Config.in"
source "package/luasocket/Config.in"
source "package/rings/Config.in"
source "package/wsapi/Config.in"
source "package/xavante/Config.in"
endif
source "package/microperl/Config.in"
source "package/php/Config.in"

14
package/xavante/Config.in Normal file
View File

@ -0,0 +1,14 @@
config BR2_PACKAGE_XAVANTE
bool "xavante"
depends on BR2_PACKAGE_LUA_SHARED_LIBRARY
select BR2_PACKAGE_CGILUA
select BR2_PACKAGE_COPAS
select BR2_PACKAGE_COXPCALL
select BR2_PACKAGE_LUAFILESYSTEM
select BR2_PACKAGE_LUASOCKET
select BR2_PACKAGE_WSAPI
help
Xavante is a Lua HTTP 1.1 Web server that uses a modular
architecture based on URI mapped handlers.
http://keplerproject.github.com/xavante/

View File

@ -0,0 +1,23 @@
#############################################################
#
# xavante
#
#############################################################
XAVANTE_VERSION = 2.2.0
XAVANTE_SITE = http://github.com/downloads/keplerproject/xavante
XAVANTE_DEPENDENCIES = cgilua copas coxpcall lua luafilesystem luasocket wsapi
define XAVANTE_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) PREFIX=/usr \
LUA_DIR="$(TARGET_DIR)/usr/share/lua" \
LUA_LIBDIR="$(TARGET_DIR)/usr/lib/lua" install
endef
define XAVANTE_UNINSTALL_TARGET_CMDS
rm -rf "$(TARGET_DIR)/usr/share/xavante"
rm -f "$(TARGET_DIR)/usr/share/xavante.lua"
rm -f "$(TARGET_DIR)/usr/share/sajax.lua"
endef
$(eval $(call GENTARGETS,package,xavante))