lede-packages-rs

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

Makefile (1013B)


      1 #
      2 # Copyright (C) 2015 OpenWrt.org
      3 #
      4 # This is free software, licensed under the GNU General Public License v2.
      5 # See /LICENSE for more information.
      6 #
      7 
      8 include $(TOPDIR)/rules.mk
      9 
     10 PKG_NAME:=Parsley
     11 PKG_VERSION:=1.3
     12 PKG_RELEASE:=1
     13 
     14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
     15 PKG_SOURCE_URL:=https://pypi.python.org/packages/source/P/Parsley
     16 PKG_MD5SUM:=92bc256e5f73810a609dc7874637ad31
     17 
     18 PKG_LICENSE:=MIT
     19 PKG_LICENSE_FILES:=LICENSE
     20 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
     21 
     22 include $(INCLUDE_DIR)/package.mk
     23 $(call include_mk, python-package.mk)
     24 
     25 define Package/python-parsley
     26 	SECTION:=lang
     27 	CATEGORY:=Languages
     28 	SUBMENU:=Python
     29 	TITLE:=python-parsley
     30 	URL:=http://launchpad.net/parsley
     31 	DEPENDS:=+python-light
     32 endef
     33 
     34 define Package/python-parsley/description
     35 Parsing and pattern matching made easy.
     36 endef
     37 
     38 define Build/Compile
     39 	$(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
     40 endef
     41 
     42 $(eval $(call PyPackage,python-parsley))
     43 $(eval $(call BuildPackage,python-parsley))