You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB

  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_HASH:=8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1
  14. PKG_LICENSE:=BSD-3-Clause
  15. PKG_LICENSE_FILES:=enum/LICENSE
  16. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  17. include $(INCLUDE_DIR)/package.mk
  18. $(call include_mk, python-package.mk)
  19. define Package/python-enum34
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. SUBMENU:=Python
  23. TITLE:=python-enum34
  24. URL:=https://pypi.python.org/pypi/enum34/
  25. DEPENDS:=+python-light
  26. endef
  27. define Package/python-enum34/description
  28. enum34 is the new Python stdlib enum module available in Python 3.4
  29. backported for previous versions of Python from 2.4 to 3.3.
  30. endef
  31. define PyPackage/python-enum34/filespec
  32. +|$(PYTHON_PKG_DIR)
  33. -|$(PYTHON_PKG_DIR)/enum/test.py
  34. endef
  35. define Build/Compile
  36. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  37. endef
  38. $(eval $(call PyPackage,python-enum34))
  39. $(eval $(call BuildPackage,python-enum34))