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.

75 lines
2.1 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.19
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=pycparser-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/p/pycparser
  13. PKG_HASH:=a988718abfad80b6b157acce7bf130a30876d27603738ac39f140993246b25b3
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-pycparser-$(PKG_VERSION)
  15. PKG_LICENSE:=BSD-3-Clause
  16. PKG_LICENSE_FILES:=LICENSE
  17. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  18. HOST_PYTHON_PACKAGE_BUILD_DEPENDS:="ply==3.10"
  19. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="ply==3.10"
  20. include $(INCLUDE_DIR)/package.mk
  21. include ../python-package.mk
  22. include ../python3-package.mk
  23. PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
  24. define Package/python-pycparser/Default
  25. SECTION:=lang
  26. CATEGORY:=Languages
  27. SUBMENU:=Python
  28. TITLE:=C parser in Python
  29. URL:=https://github.com/eliben/pycparser
  30. endef
  31. define Package/python-pycparser
  32. $(call Package/python-pycparser/Default)
  33. DEPENDS:= \
  34. +PACKAGE_python-pycparser:python-light \
  35. +PACKAGE_python-pycparser:python-ply
  36. VARIANT:=python
  37. endef
  38. define Package/python3-pycparser
  39. $(call Package/python-pycparser/Default)
  40. DEPENDS:= \
  41. +PACKAGE_python3-pycparser:python3-light \
  42. +PACKAGE_python3-pycparser:python3-ply
  43. VARIANT:=python3
  44. endef
  45. define Package/python-pycparser/description
  46. pycparser is a parser for the C language, written in pure Python. It is a
  47. module designed to be easily integrated into applications that need to parse
  48. C source code.
  49. endef
  50. define Package/python3-pycparser/description
  51. $(call Package/python-pycparser/description)
  52. .
  53. (Variant for Python3)
  54. endef
  55. $(eval $(call PyPackage,python-pycparser))
  56. $(eval $(call BuildPackage,python-pycparser))
  57. $(eval $(call BuildPackage,python-pycparser-src))
  58. $(eval $(call Py3Package,python3-pycparser))
  59. $(eval $(call BuildPackage,python3-pycparser))
  60. $(eval $(call BuildPackage,python3-pycparser-src))