Makefile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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:=pycparser
  9. PKG_VERSION:=2.14
  10. PKG_RELEASE:=3
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pycparser
  13. PKG_MD5SUM:=a2bc8d28c923b4fe2b2c3b4b51a4f935
  14. PKG_BUILD_DEPENDS:=python python-setuptools
  15. HOST_BUILD_DEPENDS:=python/host python-setuptools/host python-ply/host
  16. PKG_LICENSE:=BSD-3-Clause
  17. PKG_LICENSE_FILES:=LICENSE
  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-pycparser
  24. SECTION:=lang
  25. CATEGORY:=Languages
  26. SUBMENU:=Python
  27. TITLE:=python-pycparser
  28. URL:=https://github.com/eliben/pycparser
  29. DEPENDS:=+python-light +python-ply
  30. endef
  31. define Package/python-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. define Build/Compile
  37. $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
  38. endef
  39. define Host/Compile
  40. $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOSTPKG)")
  41. endef
  42. define Host/Install
  43. endef
  44. $(eval $(call HostBuild))
  45. $(eval $(call PyPackage,python-pycparser))
  46. $(eval $(call BuildPackage,python-pycparser))