Added a few lua modules (lpeg, md5, cjson, copas, coxpcall, lzlib, rings, rs232, wsapi, xavante, lzmq, mobdebug), zeromq

Signed-off-by: Dirk Chang <dirk@kooiot.com>
This commit is contained in:
Dirk Chang
2015-04-27 20:34:27 +08:00
parent 426d1f12d1
commit b381751752
22 changed files with 918 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
#
# Copyright (C) 2009-2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=lua-copas
PKG_VERSION:=2.0.0
PKG_RELEASE:=1
PKG_MAINTAINER:=Dirk Chang <dirk@kooiot.com>
PKG_LICENSE:=MIT
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/keplerproject/copas.git
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=f39a80add9f7c010ac979297652bbaaea0360a27
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/lua-copas
SUBMENU:=Lua
SECTION:=lang
CATEGORY:=Languages
TITLE:=Lua-Copas
URL:=https://github.com/keplerproject/copas
DEPENDS:=+lua
endef
define Package/lua-copas/description
Copas is a dispatcher based on coroutines that can be used by TCP/IP servers.
endef
define Build/Configure
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
T="$(BUILD_VARIANT)" \
PREFIX="$(PKG_INSTALL_DIR)/usr" \
install
endef
# add make variable overrides here
MAKE_FLAGS +=
define Package/lua-copas/install
$(INSTALL_DIR) $(1)/usr/lib/lua
$(INSTALL_DIR) $(1)/usr/lib/lua/copas
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas.lua $(1)/usr/lib/lua
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/ftp.lua $(1)/usr/lib/lua/copas
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/smtp.lua $(1)/usr/lib/lua/copas
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/http.lua $(1)/usr/lib/lua/copas
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/limit.lua $(1)/usr/lib/lua/copas
endef
$(eval $(call BuildPackage,lua-copas))
+15
View File
@@ -0,0 +1,15 @@
--- lua-copas-1.2.1_org/Makefile 2014-06-04 16:39:17.451563827 +0800
+++ lua-copas-1.2.1/Makefile 2014-06-04 16:39:41.115563309 +0800
@@ -1,10 +1,10 @@
# $Id: Makefile,v 1.3 2007/10/29 22:50:16 carregal Exp $
# Default prefix
-PREFIX = /usr/local
+PREFIX ?= $(DESTDIR)/usr
# System's lua directory (where Lua libraries are installed)
-LUA_DIR= $(PREFIX)/share/lua/5.1
+LUA_DIR= $(PREFIX)/lib/lua
install:
mkdir -p $(LUA_DIR)/copas