diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-07-23 19:49:19 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-07-23 19:49:19 +0000 |
commit | 8c1d9afc409fa26245256b91eb045a2f50f54c92 (patch) | |
tree | 65903012d23f729041ca23154b1ebc11003b9d7b /package/opkg/Makefile | |
parent | 4ee3ae96c2fc373a91c2ea38fa62a4f000112ddf (diff) | |
download | upstream-8c1d9afc409fa26245256b91eb045a2f50f54c92.tar.gz upstream-8c1d9afc409fa26245256b91eb045a2f50f54c92.tar.bz2 upstream-8c1d9afc409fa26245256b91eb045a2f50f54c92.zip |
use host opkg for installing packages in buildroot and ImageBuilder
SVN-Revision: 22372
Diffstat (limited to 'package/opkg/Makefile')
-rw-r--r-- | package/opkg/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile index c18f8e7319..3a5ba449f1 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -18,7 +18,9 @@ PKG_SOURCE_SUBDIR:=opkg-$(PKG_VERSION) PKG_SOURCE_URL:=http://opkg.googlecode.com/svn/trunk/ PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz PKG_FIXUP = libtool + include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk define Package/opkg SECTION:=base @@ -80,3 +82,25 @@ define Build/InstallDev endef $(eval $(call BuildPackage,opkg)) + + +HOST_CONFIGURE_ARGS += \ + --disable-curl \ + --disable-gpg \ + --with-opkgetcdir=/etc \ + --with-opkglockfile=/tmp/opkg.lock + +define Host/Configure + (cd $(HOST_BUILD_DIR); autoreconf -v --install || exit 1) + $(call Host/Configure/Default) +endef + +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) CC="$(HOSTCC)" all +endef + +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/src/opkg-cl $(STAGING_DIR_HOST)/bin/opkg +endef + +$(eval $(call HostBuild)) |