comparison deploy/linux/fix-lintian-bits.sh @ 252:120723f7698b

Bring in proto Linux deploy stuff from SV repo
author Chris Cannam
date Tue, 22 Mar 2016 12:07:54 +0000
parents
children 7dd6795af5e6
comparison
equal deleted inserted replaced
251:b49f12c9e869 252:120723f7698b
1 #!/bin/bash
2
3 dir=$1
4
5 [ -d "$dir" ] || exit 1
6
7 strip "$dir"/usr/bin/*
8
9 sz=`du -sx --exclude DEBIAN "$dir" | awk '{ print $1; }'`
10 perl -i -p -e "s/Installed-Size: .*/Installed-Size: $sz/" "$dir"/DEBIAN/control
11
12 find "$dir" -name \*~ -exec rm \{\} \;
13
14 sudo chown -R root.root "$dir"/*
15
16 sudo chmod -R g-w "$dir"/*