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.3 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-pycparser
  9. PKG_VERSION:=2.20
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=pycparser
  12. PKG_HASH:=2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0
  13. PKG_LICENSE:=BSD-3-Clause
  14. PKG_LICENSE_FILES:=LICENSE
  15. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  16. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="ply==3.10"
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python3-package.mk
  20. define Package/python-pycparser/Default
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=C parser in Python
  25. URL:=https://github.com/eliben/pycparser
  26. endef
  27. define Package/python3-pycparser
  28. $(call Package/python-pycparser/Default)
  29. DEPENDS:= \
  30. +PACKAGE_python3-pycparser:python3-light \
  31. +PACKAGE_python3-pycparser:python3-ply
  32. VARIANT:=python3
  33. endef
  34. define Package/python3-pycparser/description
  35. pycparser is a parser for the C language, written in pure Python. It is a
  36. module designed to be easily integrated into applications that need to parse
  37. C source code.
  38. .
  39. (Variant for Python3)
  40. endef
  41. $(eval $(call Py3Package,python3-pycparser))
  42. $(eval $(call BuildPackage,python3-pycparser))
  43. $(eval $(call BuildPackage,python3-pycparser-src))