Makefile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:=ply
  9. PKG_VERSION:=3.9
  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:=c5c5767376eff902617fd9874f0c76b7
  14. PKG_BUILD_DEPENDS:=python python-setuptools
  15. HOST_BUILD_DEPENDS:=python/host python-setuptools/host
  16. PKG_LICENSE:=BSD-3-Clause
  17. PKG_LICENSE_FILES:=README.md
  18. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  19. include $(INCLUDE_DIR)/host-build.mk
  20. include $(INCLUDE_DIR)/package.mk
  21. $(call include_mk, python-package.mk)
  22. $(call include_mk, python-host.mk)
  23. define Package/python-ply
  24. SECTION:=lang
  25. CATEGORY:=Languages
  26. SUBMENU:=Python
  27. TITLE:=python-ply
  28. URL:=http://www.dabeaz.com/ply/
  29. DEPENDS:=+python-light
  30. endef
  31. define Package/python-ply/description
  32. PLY is a 100% Python implementation of the common parsing tools lex
  33. and yacc.
  34. endef
  35. define Build/Compile
  36. $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
  37. endef
  38. define Host/Compile
  39. $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOSTPKG)")
  40. endef
  41. define Host/Install
  42. endef
  43. $(eval $(call HostBuild))
  44. $(eval $(call PyPackage,python-ply))
  45. $(eval $(call BuildPackage,python-ply))