mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-17 21:53:09 +02:00
add an "Installed-Size" field to package control files, so that opkg could check needed vs. available storage space before installing a package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13602 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
66ae166492
commit
9eba705f93
@ -72,6 +72,7 @@ ifeq ($(DUMP),)
|
|||||||
echo "Priority: $(PRIORITY)"; \
|
echo "Priority: $(PRIORITY)"; \
|
||||||
echo "Maintainer: $(MAINTAINER)"; \
|
echo "Maintainer: $(MAINTAINER)"; \
|
||||||
echo "Architecture: $(PKGARCH)"; \
|
echo "Architecture: $(PKGARCH)"; \
|
||||||
|
echo "Installed-Size: 1"; \
|
||||||
echo -n "Description: "; getvar $(call shvar,Package/$(1)/description) | sed -e 's,^[[:space:]]*, ,g'; \
|
echo -n "Description: "; getvar $(call shvar,Package/$(1)/description) | sed -e 's,^[[:space:]]*, ,g'; \
|
||||||
) >> $$(IDIR_$(1))/CONTROL/control
|
) >> $$(IDIR_$(1))/CONTROL/control
|
||||||
chmod 644 $$(IDIR_$(1))/CONTROL/control
|
chmod 644 $$(IDIR_$(1))/CONTROL/control
|
||||||
@ -84,6 +85,8 @@ ifeq ($(DUMP),)
|
|||||||
mkdir -p $(PACKAGE_DIR)
|
mkdir -p $(PACKAGE_DIR)
|
||||||
-find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' | $(XARGS) rm -rf
|
-find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' | $(XARGS) rm -rf
|
||||||
$(RSTRIP) $$(IDIR_$(1))
|
$(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)
|
$(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
|
||||||
@[ -f $$(IPKG_$(1)) ] || false
|
@[ -f $$(IPKG_$(1)) ] || false
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user