wsapi-fcgi: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
[Thomas: add entry to DEVELOPERS file, add <pkg>_LICENSE = MIT]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Francois Perrad 2017-09-02 18:56:42 +02:00 committed by Thomas Petazzoni
parent 064b475033
commit 011a1add73
5 changed files with 28 additions and 0 deletions

View file

@ -618,6 +618,7 @@ F: package/qemu/
F: package/sdl2_mixer/
F: package/sdl2_net/
F: package/tekui/
F: package/wsapi-fcgi/
F: package/wsapi-xavante/
F: utils/scancpan

View file

@ -606,6 +606,7 @@ menu "Lua libraries/modules"
source "package/rings/Config.in"
source "package/turbolua/Config.in"
source "package/wsapi/Config.in"
source "package/wsapi-fcgi/Config.in"
source "package/wsapi-xavante/Config.in"
source "package/xavante/Config.in"
endmenu

View file

@ -0,0 +1,11 @@
config BR2_PACKAGE_WSAPI_FCGI
bool "wsapi-fcgi"
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_LIBFCGI
# Runtime dependency only
select BR2_PACKAGE_WSAPI
help
WSAPI is an API that abstracts the web server from Lua web
applications. This is the rock that contains the FCGI module lfcgi.
http://keplerproject.github.com/wsapi/

View file

@ -0,0 +1,2 @@
# locally computed hash
sha256 73dc200889bc185953cd3a7c5350c998c090f901fcd10771273b7a63a3ffcdcf wsapi-fcgi-1.6.1-1.src.rock

View file

@ -0,0 +1,13 @@
################################################################################
#
# wsapi-fcgi
#
################################################################################
WSAPI_FCGI_VERSION_MAJOR = 1.6.1
WSAPI_FCGI_VERSION = $(WSAPI_FCGI_VERSION_MAJOR)-1
WSAPI_FCGI_SUBDIR = wsapi-$(WSAPI_FCGI_VERSION_MAJOR)
WSAPI_FCGI_DEPENDENCIES = libfcgi
WSAPI_FCGI_LICENSE = MIT
$(eval $(luarocks-package))