diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-06 02:12:14 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-06 02:12:14 +0000 |
commit | a417d0737bc6e279aee7448e77696639b8260912 (patch) | |
tree | 82b2717af0d9d354977def952cdfe4b51804161f /package/opkg | |
parent | d069b1594fc3713165f3218df35a23f6e5fed151 (diff) | |
download | master-187ad058-a417d0737bc6e279aee7448e77696639b8260912.tar.gz master-187ad058-a417d0737bc6e279aee7448e77696639b8260912.tar.bz2 master-187ad058-a417d0737bc6e279aee7448e77696639b8260912.zip |
[package] opkg: reintroduce host build, utilize fixed HOST_BUILD_DEPENDS and depend libtool/host
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22947 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg')
-rw-r--r-- | package/opkg/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile index c18f8e7319..442f90cd1a 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 @@ -79,4 +81,27 @@ define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/usr/include/libopkg $(1)/usr/include/ endef + +HOST_BUILD_DEPENDS:=libtool/host + +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 BuildPackage,opkg)) +$(eval $(call HostBuild)) |