|
|
- #
- # 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:=Parsley
- PKG_VERSION:=1.3
- PKG_RELEASE:=1
-
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=https://pypi.python.org/packages/source/P/Parsley
- PKG_MD5SUM:=92bc256e5f73810a609dc7874637ad31
-
- PKG_LICENSE:=MIT
- PKG_LICENSE_FILES:=LICENSE
- PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
-
- include $(INCLUDE_DIR)/package.mk
- $(call include_mk, python-package.mk)
-
- define Package/python-parsley
- SECTION:=lang
- CATEGORY:=Languages
- SUBMENU:=Python
- TITLE:=python-parsley
- URL:=http://launchpad.net/parsley
- DEPENDS:=+python-light
- endef
-
- define Package/python-parsley/description
- Parsing and pattern matching made easy.
- endef
-
- define Build/Compile
- $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
- endef
-
- $(eval $(call PyPackage,python-parsley))
- $(eval $(call BuildPackage,python-parsley))
|