From: Alexandru Ardelean Date: Wed, 24 May 2017 16:26:07 +0000 (+0300) Subject: python-six: add host-side build X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=refs%2Fpull%2F4380%2Fhead;p=feed%2Fpackages.git python-six: add host-side build Needed for Open vSwitch's python libs. And build. Signed-off-by: Alexandru Ardelean --- diff --git a/lang/python/python-six/Makefile b/lang/python/python-six/Makefile index 9f07049540..6e4259d305 100644 --- a/lang/python/python-six/Makefile +++ b/lang/python/python-six/Makefile @@ -9,18 +9,20 @@ include $(TOPDIR)/rules.mk PKG_NAME:=six PKG_VERSION:=1.10.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/six PKG_MD5SUM:=34eed507548117b2ab523ab14b2f8b55 -PKG_BUILD_DEPENDS:=python python-setuptools +HOST_BUILD_DEPENDS:=python/host +PKG_BUILD_DEPENDS:=python PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Jeffery To +include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk $(call include_mk, python-package.mk) @@ -44,5 +46,13 @@ define Build/Compile $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) endef +define Host/Compile + $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOSTPKG)") +endef + +Host/Install:= + +$(eval $(call HostBuild)) + $(eval $(call PyPackage,python-six)) $(eval $(call BuildPackage,python-six))