Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= python3-setuptools
  5. PKG_VERSION:= 78.1.0
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54
  8. PKG_DESCR:= python installer
  9. PKG_SECTION:= dev/tools
  10. PKG_BUILDDEP:= python3-host
  11. PKG_SITES:= https://files.pythonhosted.org/packages/a9/5a/0db4da3bc908df06e5efae42b44e75c81dd52716e10192ff36d0c1c8e379/
  12. PKG_CFLINE_PYTHON3_SETUPTOOLS:= depends on ADK_HOST_ONLY
  13. DISTFILES:= setuptools-$(PKG_VERSION).tar.gz
  14. WRKDIST= $(WRKDIR)/setuptools-$(PKG_VERSION)
  15. include ${ADK_TOPDIR}/mk/host.mk
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call HOST_template,PYTHON3_SETUPTOOLS,python3-setuptools,${PKG_VERSION}-${PKG_RELEASE}))
  18. include $(ADK_TOPDIR)/mk/python3.mk
  19. HOST_STYLE:= manual
  20. python3-setuptools-hostinstall:
  21. (cd $(WRKBUILD); PATH='$(HOST_PATH)' python3 ./setup.py install \
  22. --prefix=$(STAGING_HOST_DIR)/usr)
  23. include ${ADK_TOPDIR}/mk/host-bottom.mk
  24. include $(ADK_TOPDIR)/mk/pkg-bottom.mk