Mercurial > hg > easyhg
view deploy/linux/fix-lintian-bits.sh @ 731:2cb03c4665aa
Include kdiff3 executable in bundle on macOS
author | Chris Cannam |
---|---|
date | Mon, 17 Dec 2018 11:18:55 +0000 |
parents | cd4617b18960 |
children |
line wrap: on
line source
#!/bin/bash dir=$1 [ -d "$dir" ] || exit 1 set -eu for x in "$dir"/usr/bin/* ; do case "$x" in *.sh) ;; *) strip "$x" ;; esac done sz=`du -sx --exclude DEBIAN "$dir" | awk '{ print $1; }'` perl -i -p -e "s/Installed-Size: .*/Installed-Size: $sz/" "$dir"/DEBIAN/control find "$dir" -name \*~ -exec rm \{\} \; chown -R root.root "$dir"/* chmod -R g-w "$dir"/*