New lua module: luasocket

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:51:00 -03:00
committed by Peter Korsgaard
parent 15ec5ee821
commit b9b76f7441
4 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
config BR2_PACKAGE_LUASOCKET
bool "luasocket"
depends on BR2_PACKAGE_LUA_SHARED_LIBRARY
help
LuaSocket is the most comprehensive networking support library
for the Lua language.
It provides easy access to TCP, UDP, DNS, SMTP,
FTP, HTTP, MIME and much more.
http://luaforge.net/projects/luasocket/

View File

@@ -0,0 +1,36 @@
#############################################################
#
# luasocket
#
#############################################################
LUASOCKET_VERSION = 2.0.2
LUASOCKET_SITE = http://luaforge.net/frs/download.php/2664
LUASOCKET_DEPENDENCIES = lua
define LUASOCKET_BUILD_CMDS
$(MAKE) -C $(@D) -f makefile \
CC="$(TARGET_CC)" LD="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS) -fPIC"
endef
define LUASOCKET_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) -f makefile \
INSTALL_TOP_SHARE="$(TARGET_DIR)/usr/share/lua" \
INSTALL_TOP_LIB="$(TARGET_DIR)/usr/lib/lua" install
endef
define LUASOCKET_UNINSTALL_TARGET_CMDS
rm -rf "$(TARGET_DIR)/usr/lib/lua/mime"
rm -rf "$(TARGET_DIR)/usr/lib/lua/socket"
rm -rf "$(TARGET_DIR)/usr/share/lua/socket"
rm -f "$(TARGET_DIR)/usr/share/lua/socket.lua"
rm -f "$(TARGET_DIR)/usr/share/lua/mime.lua"
rm -f "$(TARGET_DIR)/usr/share/lua/ltn12.lua"
endef
define LUASOCKET_CLEAN_CMDS
$(MAKE) -C $(@D) -f makefile clean
endef
$(eval $(call GENTARGETS,package,luasocket))