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
+75
View File
@@ -0,0 +1,75 @@
#
# Copyright (C) 2015 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-md5
PKG_VERSION:=1.2
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/md5.git
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=024b65738b4434860777fc43d7cacaefea29ec60
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/lua-md5
SUBMENU:=Lua
SECTION:=lang
CATEGORY:=Languages
TITLE:=Lua-MD5
URL:=https://github.com/keplerproject/md5
DEPENDS:=+lua
endef
define Package/lua-md5/description
MD5 offers basic cryptographic facilities for Lua
endef
TARGET_CFLAGS += $(FPIC)
# add make variable overrides here
MAKE_FLAGS +=
define Build/Configure
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
PREFIX="$(STAGING_DIR)/usr" \
LUA_LIBDIR="$(STAGING_DIR)/usr/lib/lua" \
clean
$(MAKE) -C $(PKG_BUILD_DIR) \
PREFIX="$(STAGING_DIR)/usr" \
LUA_LIBDIR="$(STAGING_DIR)/usr/lib/lua" \
LIB_OPTION="-shared" \
CC="$(TARGET_CROSS)gcc" \
CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
all
endef
define Build/Install
$(MAKE) -C $(PKG_BUILD_DIR) \
LUA_LIBDIR="$(PKG_INSTALL_DIR)/usr/lib/lua" \
LUA_DIR="$(PKG_INSTALL_DIR)/usr/lib/lua" \
install
endef
define Package/lua-md5/install
$(INSTALL_DIR) $(1)/usr/lib/lua
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/md5.lua $(1)/usr/lib/lua
$(INSTALL_DIR) $(1)/usr/lib/lua/md5
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/core.so $(1)/usr/lib/lua/md5/core.so
endef
$(eval $(call BuildPackage,lua-md5))
+19
View File
@@ -0,0 +1,19 @@
--- lua-md5-1.2/config 2014-06-04 16:55:50.000000000 +0800
+++ lua-md5-1.2_new/config 2014-06-04 16:57:54.223539416 +0800
@@ -1,13 +1,13 @@
# Installation directories
# Default prefix
-PREFIX = /usr/local
+PREFIX = /usr
# System's libraries directory (where binary libraries are installed)
-LUA_LIBDIR= $(PREFIX)/lib/lua/5.1
+LUA_LIBDIR= $(PREFIX)/lib/lua
# System's lua directory (where Lua libraries are installed)
-LUA_DIR= $(PREFIX)/share/lua/5.1
+LUA_DIR= $(PREFIX)/lib/lua
# Lua includes directory
LUA_INC= $(PREFIX)/include
+10
View File
@@ -0,0 +1,10 @@
--- a/Makefile.orig 2014-06-04 17:16:40.083514808 +0800
+++ b/Makefile 2014-06-04 17:17:27.111513780 +0800
@@ -1,6 +1,6 @@
# $Id: Makefile,v 1.7 2007/10/11 00:02:56 carregal Exp $
-CONFIG= ./config
+CFLAGS+= -fPIC
include $(CONFIG)