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.

47 lines
1.2 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:=3
  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. PKG_BUILD_PARALLEL:=0
  17. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="ply==3.10"
  18. include ../pypi.mk
  19. include $(INCLUDE_DIR)/package.mk
  20. include ../python3-package.mk
  21. define Package/python3-pycparser
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. SUBMENU:=Python
  25. TITLE:=C parser in Python
  26. URL:=https://github.com/eliben/pycparser
  27. DEPENDS:= \
  28. +python3-light \
  29. +python3-ply
  30. endef
  31. define Package/python3-pycparser/description
  32. pycparser is a parser for the C language, written in pure Python. It is a
  33. module designed to be easily integrated into applications that need to parse
  34. C source code.
  35. endef
  36. $(eval $(call Py3Package,python3-pycparser))
  37. $(eval $(call BuildPackage,python3-pycparser))
  38. $(eval $(call BuildPackage,python3-pycparser-src))