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.

53 lines
1.2 KiB

  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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ply
  9. PKG_VERSION:=3.8
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.dabeaz.com/ply
  13. PKG_MD5SUM:=94726411496c52c87c2b9429b12d5c50
  14. PKG_BUILD_DEPENDS:=python python-setuptools
  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. $(call include_mk, python-package.mk)
  20. define Package/python-ply
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=python-ply
  25. URL:=http://www.dabeaz.com/ply/
  26. DEPENDS:=+python-light
  27. endef
  28. define Package/python-ply/description
  29. PLY is a 100% Python implementation of the common parsing tools lex
  30. and yacc.
  31. endef
  32. define Build/Compile
  33. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  34. endef
  35. define Build/InstallDev
  36. $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
  37. $(CP) \
  38. $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
  39. $(1)$(PYTHON_PKG_DIR)
  40. endef
  41. $(eval $(call PyPackage,python-ply))
  42. $(eval $(call BuildPackage,python-ply))