diff options
author | Nicolas Thill <nico@openwrt.org> | 2008-12-11 20:15:41 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2008-12-11 20:15:41 +0000 |
commit | 0bbd70070fb54e013db3a7ebd041c83e7d22c8bf (patch) | |
tree | a3a7710bb13cdc883fe4364c9eb0be744e516a0a | |
parent | 1fa146069156a8a744ec2c54d71bac9c9adadb23 (diff) | |
download | upstream-0bbd70070fb54e013db3a7ebd041c83e7d22c8bf.tar.gz upstream-0bbd70070fb54e013db3a7ebd041c83e7d22c8bf.tar.bz2 upstream-0bbd70070fb54e013db3a7ebd041c83e7d22c8bf.zip |
add an "Installed-Size" field to package control files, so that opkg could check needed vs. available storage space before installing a package
SVN-Revision: 13602
-rw-r--r-- | include/package-ipkg.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index c5d4916c2c..b91a27710b 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -72,6 +72,7 @@ ifeq ($(DUMP),) echo "Priority: $(PRIORITY)"; \ echo "Maintainer: $(MAINTAINER)"; \ echo "Architecture: $(PKGARCH)"; \ + echo "Installed-Size: 1"; \ echo -n "Description: "; getvar $(call shvar,Package/$(1)/description) | sed -e 's,^[[:space:]]*, ,g'; \ ) >> $$(IDIR_$(1))/CONTROL/control chmod 644 $$(IDIR_$(1))/CONTROL/control @@ -84,6 +85,8 @@ ifeq ($(DUMP),) mkdir -p $(PACKAGE_DIR) -find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' | $(XARGS) rm -rf $(RSTRIP) $$(IDIR_$(1)) + SIZE=`cd $$(IDIR_$(1)); du -bs --exclude=./CONTROL . 2>/dev/null | cut -f1`; \ + $(SED) "s|^\(Installed-Size:\).*|\1 $$$$SIZE|g" $$(IDIR_$(1))/CONTROL/control $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR) @[ -f $$(IPKG_$(1)) ] || false |