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>
10 years ago 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>
10 years ago 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>
10 years ago 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>
10 years ago |
|
- #
- # 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:=lpeg
- PKG_VERSION:=1.0.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:=http://www.inf.puc-rio.br/~roberto/lpeg/
- PKG_HASH:=48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
-
- include $(INCLUDE_DIR)/package.mk
-
- define Package/lpeg
- SUBMENU:=Lua
- SECTION:=lang
- CATEGORY:=Languages
- TITLE:=LPeg
- URL:=http://www.inf.puc-rio.br/~roberto/lpeg/
- DEPENDS:=+lua
- endef
-
- define Package/lpeg/description
- LPeg is a new pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs)
- endef
-
- define Build/Configure
- endef
-
- # add make variable overrides here
- MAKE_FLAGS += \
- COPT="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -O2"
-
- define Package/lpeg/install
- $(INSTALL_DIR) $(1)/usr/lib/lua
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/lpeg.so $(1)/usr/lib/lua
- endef
-
- $(eval $(call BuildPackage,lpeg))
|