summaryrefslogtreecommitdiffstats
path: root/misc/pinfo/doinst.sh
blob: d514aad2182a3e73c67e6e211cc9a164dfb5af92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    rm $NEW
  fi
}

config etc/pinforc.new

if [ -x /usr/bin/install-info ]; then
  /usr/bin/install-info usr/info/pinfo.info.gz usr/info/dir
fi