X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/29752f54bbcb979a2f4734b4f2938eef80dacca0..38df04989f5f979596bcceee9d66e68b699b5188:/package/opkg/Makefile?ds=inline diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 81f7b4a4a..25cdc524c 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -8,9 +8,9 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=opkg -PKG_REV:=513 +PKG_REV:=576 PKG_VERSION:=$(PKG_REV) -PKG_RELEASE:=2 +PKG_RELEASE:=1 PKG_SOURCE_PROTO:=svn PKG_SOURCE_VERSION:=$(PKG_REV) @@ -18,12 +18,16 @@ 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 +PKG_REMOVE_FILES = autogen.sh aclocal.m4 + include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk define Package/opkg SECTION:=base CATEGORY:=Base system TITLE:=opkg package management system + MAINTAINER:=Jo-Philipp Wich URL:=http://wiki.openmoko.org/wiki/Opkg endef @@ -50,13 +54,6 @@ CONFIGURE_ARGS += \ --with-opkgetcdir=/etc \ --with-opkglockfile=/var/lock/opkg.lock -define Build/Configure - (cd $(PKG_BUILD_DIR); \ - autoreconf -v --install || exit 1 \ - ); - $(call Build/Configure/Default) -endef - define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ @@ -79,4 +76,20 @@ define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/usr/include/libopkg $(1)/usr/include/ endef + +HOST_CONFIGURE_ARGS+= \ + --disable-curl \ + --disable-gpg \ + --with-opkgetcdir=/etc \ + --with-opkglockfile=/tmp/opkg.lock + +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))