Added LPEG
This commit is contained in:
parent
cfc153984d
commit
9cf785aba8
3 changed files with 76 additions and 0 deletions
1
contrib/lpeg/.gitignore
vendored
Normal file
1
contrib/lpeg/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
lpeg-*
|
33
contrib/lpeg/Makefile
Normal file
33
contrib/lpeg/Makefile
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
include ../../build/config.mk
|
||||||
|
include ../../build/gccconfig.mk
|
||||||
|
|
||||||
|
LPEG_VERSION = 0.8.1
|
||||||
|
LPEG_SITE = http://www.inf.puc-rio.br/~roberto/lpeg
|
||||||
|
LPEG_DIR = lpeg-$(LPEG_VERSION)
|
||||||
|
LPEG_FILE = $(LPEG_DIR).tar.gz
|
||||||
|
LPEG_URL = $(LPEG_SITE)/$(LPEG_FILE)
|
||||||
|
|
||||||
|
all: compile
|
||||||
|
|
||||||
|
include ../../build/module.mk
|
||||||
|
|
||||||
|
$(LPEG_FILE):
|
||||||
|
wget -O $@ $(LPEG_URL) || rm -f $@
|
||||||
|
|
||||||
|
$(LPEG_DIR)/.prepared: $(LPEG_FILE)
|
||||||
|
rm -rf $(LPEG_DIR)
|
||||||
|
tar xvfz $(LPEG_FILE)
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
compile: $(LPEG_DIR)/.prepared
|
||||||
|
$(MAKE) -C $(LPEG_DIR) CC=$(CC) COPT="$(CFLAGS) $(LUA_CFLAGS) -fpic"
|
||||||
|
mkdir -p dist$(LUA_LIBRARYDIR)
|
||||||
|
cp $(LPEG_DIR)/{lpeg.so,re.lua} dist$(LUA_LIBRARYDIR)
|
||||||
|
|
||||||
|
luasource:
|
||||||
|
luastrip:
|
||||||
|
luacompile:
|
||||||
|
compile-all: compile
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(LPEG_DIR) $(LPEG_FILE)
|
42
contrib/package/lpeg/Makefile
Normal file
42
contrib/package/lpeg/Makefile
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# Copyright (C) 2008 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=lpeg
|
||||||
|
PKG_VERSION:=0.8.1
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_SOURCE_URL:=http://www.inf.puc-rio.br/~roberto/lpeg
|
||||||
|
PKG_MD5SUM:=b6b172bbcdcba5c87b37eef9bb5ae199
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/lpeg
|
||||||
|
SECTION:=lang
|
||||||
|
CATEGORY:=Languages
|
||||||
|
SUBMENU:=LUA
|
||||||
|
TITLE:=LPEG - Parsing Expression Grammars
|
||||||
|
URL:=http://www.inf.puc-rio.br/~roberto/lpeg.html
|
||||||
|
DEPENDS:=+liblua
|
||||||
|
endef
|
||||||
|
|
||||||
|
MAKE_FLAGS += COPT="$(TARGET_CFLAGS) $(FPIC) -I$(STAGING_DIR)/usr/include"
|
||||||
|
|
||||||
|
define Build/Configure
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/lpeg/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/{lpeg.so,re.lua} $(1)/usr/lib/lua
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,lpeg))
|
Loading…
Reference in a new issue