From a4a36422d40cf8e2944df3163a0d7308fd85728f Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Fri, 26 May 2017 14:56:51 +0300 Subject: [PATCH] Add Installed-Size to deb build https://github.com/paritytech/parity/issues/4937 --- scripts/deb-build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/deb-build.sh b/scripts/deb-build.sh index 62fdb3cad..5682e2c29 100644 --- a/scripts/deb-build.sh +++ b/scripts/deb-build.sh @@ -27,6 +27,8 @@ echo "Vcs-Browser: https://github.com/paritytech/parity" >> $control echo "Architecture: $1" >> $control echo "Depends: libssl1.0.0 (>=1.0.0)" >> $control echo "Description: Ethereum network client by Parity Technologies" >> $control +size=`du deb/|awk 'END {print $1}'` +echo "Installed-Size: $size" >> $control #build .deb package exit