diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-05-10 14:54:54 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-05 22:14:01 +0200 |
commit | e5d578a6e2ea8244d7e6de12747930b0f2e3393b (patch) | |
tree | 2220cf6678ad4ec8708fb0aa7925c0dc7ebe59a4 /package/wsapi | |
parent | bfce1e4cbcd995792e5fe92c4c1f2d0e77d52618 (diff) | |
download | buildroot-e5d578a6e2ea8244d7e6de12747930b0f2e3393b.tar.gz buildroot-e5d578a6e2ea8244d7e6de12747930b0f2e3393b.zip |
New lua module: wsapi
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/wsapi')
-rw-r--r-- | package/wsapi/Config.in | 9 | ||||
-rw-r--r-- | package/wsapi/wsapi.mk | 21 |
2 files changed, 30 insertions, 0 deletions
diff --git a/package/wsapi/Config.in b/package/wsapi/Config.in new file mode 100644 index 0000000000..3621648484 --- /dev/null +++ b/package/wsapi/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_WSAPI + bool "wsapi" + select BR2_PACKAGE_COXPCALL + select BR2_PACKAGE_LUAFILESYSTEM + select BR2_PACKAGE_RINGS + help + API that abstracts the web server from Lua web applications. + + http://keplerproject.github.com/wsapi/ diff --git a/package/wsapi/wsapi.mk b/package/wsapi/wsapi.mk new file mode 100644 index 0000000000..c0f9c8bdb5 --- /dev/null +++ b/package/wsapi/wsapi.mk @@ -0,0 +1,21 @@ +############################################################# +# +# wsapi +# +############################################################# + +WSAPI_VERSION = 1.3.4 +WSAPI_SITE = http://github.com/downloads/keplerproject/wsapi +WSAPI_DEPENDENCIES = coxpcall luafilesystem rings + +define WSAPI_INSTALL_TARGET_CMDS + mkdir -p $(TARGET_DIR)/usr/share/lua/wsapi + $(INSTALL) -m 0644 -D $(@D)/src/wsapi/*.lua \ + $(TARGET_DIR)/usr/share/lua/wsapi +endef + +define WSAPI_UNINSTALL_TARGET_CMDS + rm -rf "$(TARGET_DIR)/usr/share/lua/wsapi" +endef + +$(eval $(call GENTARGETS,package,wsapi)) |