mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 02:48:26 +02:00
[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
This commit is contained in:
parent
fc1ff6d3ea
commit
3edae0c682
@ -18,7 +18,9 @@ PKG_SOURCE_SUBDIR:=opkg-$(PKG_VERSION)
|
|||||||
PKG_SOURCE_URL:=http://opkg.googlecode.com/svn/trunk/
|
PKG_SOURCE_URL:=http://opkg.googlecode.com/svn/trunk/
|
||||||
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
||||||
PKG_FIXUP = libtool
|
PKG_FIXUP = libtool
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
|
||||||
define Package/opkg
|
define Package/opkg
|
||||||
SECTION:=base
|
SECTION:=base
|
||||||
@ -79,4 +81,27 @@ define Build/InstallDev
|
|||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/libopkg $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libopkg $(1)/usr/include/
|
||||||
endef
|
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 BuildPackage,opkg))
|
||||||
|
$(eval $(call HostBuild))
|
||||||
|
Loading…
Reference in New Issue
Block a user