lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 3021cb267cbfbab02155f771eef7d24d202eb5ec
parent 1553468e04366ffdec9ee0533ceeca4583f343e4
Author: Jeffery To <jeffery.to@gmail.com>
Date:   Thu, 12 Nov 2015 23:39:50 +0800

python-ply: new package

From the README:

PLY is a 100% Python implementation of the common parsing tools lex
and yacc.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>

Diffstat:
Alang/python-ply/Makefile | 44++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+), 0 deletions(-)

diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile @@ -0,0 +1,44 @@ +# +# 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:=ply +PKG_VERSION:=3.8 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.dabeaz.com/ply +PKG_MD5SUM:=94726411496c52c87c2b9429b12d5c50 + +PKG_LICENSE:=BSD-3-Clause +PKG_LICENSE_FILES:=README.md +PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-ply + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=python-ply + URL:=http://www.dabeaz.com/ply/ + DEPENDS:=+python-light +endef + +define Package/python-ply/description +PLY is a 100% Python implementation of the common parsing tools lex +and yacc. +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) +endef + +$(eval $(call PyPackage,python-ply)) +$(eval $(call BuildPackage,python-ply))