lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 0b2ce1d786b3baed79b4d4a96c8855f2e7ffe8fc
parent b652aebd12532cdd6d8d97e6ba75dd6acf96beeb
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date:   Mon,  7 Dec 2015 11:12:33 +0200

Merge pull request #2032 from jefferyto/python-ply-host

python-ply: add host compile/install
Diffstat:
Mlang/python-ply/Makefile | 16++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile @@ -9,20 +9,23 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ply PKG_VERSION:=3.8 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.dabeaz.com/ply PKG_MD5SUM:=94726411496c52c87c2b9429b12d5c50 PKG_BUILD_DEPENDS:=python python-setuptools +HOST_BUILD_DEPENDS:=python/host python-setuptools/host PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=README.md PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> +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-ply SECTION:=lang @@ -39,7 +42,7 @@ and yacc. endef define Build/Compile - $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) + $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)") endef define Build/InstallDev @@ -49,5 +52,14 @@ define Build/InstallDev $(1)$(PYTHON_PKG_DIR) endef +define Host/Compile + $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOST)") +endef + +define Host/Install +endef + +$(eval $(call HostBuild)) + $(eval $(call PyPackage,python-ply)) $(eval $(call BuildPackage,python-ply))