Add Installed-Size to deb build

https://github.com/paritytech/parity/issues/4937
This commit is contained in:
Denis S. Soldatov aka General-Beck 2017-05-26 14:56:51 +03:00 committed by GitHub
parent 543965411e
commit a4a36422d4

View File

@ -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