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.

68 lines
1.6 KiB

  1. #
  2. # Copyright (C) 2015-2018 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:=python-ply
  9. PKG_VERSION:=3.10
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=ply-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.dabeaz.com/ply
  13. PKG_HASH:=96e94af7dd7031d8d6dd6e2a8e0de593b511c211a86e28a9c9621c275ac8bacb
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-ply-$(PKG_VERSION)
  15. PKG_LICENSE:=BSD-3-Clause
  16. PKG_LICENSE_FILES:=README.md
  17. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python-package.mk
  20. include ../python3-package.mk
  21. PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
  22. define Package/python-ply/Default
  23. SECTION:=lang
  24. CATEGORY:=Languages
  25. SUBMENU:=Python
  26. URL:=http://www.dabeaz.com/ply/
  27. endef
  28. define Package/python-ply
  29. $(call Package/python-ply/Default)
  30. TITLE:=python-ply
  31. DEPENDS:=+PACKAGE_python-ply:python-light
  32. VARIANT:=python
  33. endef
  34. define Package/python3-ply
  35. $(call Package/python-ply/Default)
  36. TITLE:=python3-ply
  37. DEPENDS:=+PACKAGE_python3-ply:python3-light
  38. VARIANT:=python3
  39. endef
  40. define Package/python-ply/description
  41. PLY is a 100% Python implementation of the common parsing tools lex
  42. and yacc.
  43. endef
  44. define Package/python3-ply/description
  45. $(call Package/python-ply/description)
  46. .
  47. (Variant for Python3)
  48. endef
  49. $(eval $(call PyPackage,python-ply))
  50. $(eval $(call BuildPackage,python-ply))
  51. $(eval $(call BuildPackage,python-ply-src))
  52. $(eval $(call Py3Package,python3-ply))
  53. $(eval $(call BuildPackage,python3-ply))
  54. $(eval $(call BuildPackage,python3-ply-src))