Browse Source

Merge pull request #1985 from jefferyto/python-setuptools-host

python-setuptools: add ability to install on host
lilik-openwrt-22.03
Hannu Nyman 9 years ago
parent
commit
15ea770194
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      lang/python-setuptools/Makefile

+ 17
- 0
lang/python-setuptools/Makefile View File

@ -15,10 +15,15 @@ PKG_SOURCE:=setuptools-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/setuptools/
PKG_MD5SUM:=295d7aaef2da7d6ff10b522581da0cf9
HOST_BUILD_DEPENDS:=python/host
PKG_BUILD_DIR:=$(BUILD_DIR)/setuptools-$(PKG_VERSION)
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/setuptools-$(PKG_VERSION)
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
$(call include_mk, python-package.mk)
$(call include_mk, python-host.mk)
define Package/python-setuptools
SUBMENU:=Python
@ -53,6 +58,18 @@ define PyPackage/python-setuptools/install
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
endef
define Host/Compile
$(call Build/Compile/HostPyMod,,\
install --root="$(STAGING_DIR_HOST)" --prefix="" \
--single-version-externally-managed \
)
endef
define Host/Install
endef
$(eval $(call HostBuild))
$(eval $(call PyPackage,python-setuptools))
$(eval $(call BuildPackage,python-setuptools))

Loading…
Cancel
Save