lede-packages-rs

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

Makefile (1315B)


      1 #
      2 # Copyright (C) 2015-2016 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:=enum34
     11 PKG_VERSION:=1.1.6
     12 PKG_RELEASE:=2
     13 
     14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
     15 PKG_SOURCE_URL:=https://pypi.python.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876
     16 PKG_MD5SUM:=5f13a0841a61f7fc295c514490d120d0
     17 
     18 PKG_BUILD_DEPENDS:=python python-setuptools
     19 
     20 PKG_LICENSE:=BSD-3-Clause
     21 PKG_LICENSE_FILES:=enum/LICENSE
     22 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
     23 
     24 include $(INCLUDE_DIR)/package.mk
     25 $(call include_mk, python-package.mk)
     26 
     27 define Package/python-enum34
     28 	SECTION:=lang
     29 	CATEGORY:=Languages
     30 	SUBMENU:=Python
     31 	TITLE:=python-enum34
     32 	URL:=https://pypi.python.org/pypi/enum34/
     33 	DEPENDS:=+python-light
     34 endef
     35 
     36 define Package/python-enum34/description
     37 enum34 is the new Python stdlib enum module available in Python 3.4
     38 backported for previous versions of Python from 2.4 to 3.3.
     39 endef
     40 
     41 define PyPackage/python-enum34/filespec
     42 +|$(PYTHON_PKG_DIR)
     43 -|$(PYTHON_PKG_DIR)/enum/test.py
     44 endef
     45 
     46 define Build/Compile
     47 	$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
     48 endef
     49 
     50 $(eval $(call PyPackage,python-enum34))
     51 $(eval $(call BuildPackage,python-enum34))