Makefile 1.3 KB

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