summaryrefslogtreecommitdiffstats
path: root/system/slpkg/doinst.sh
blob: 7f609d17c05951b7e7fabef5f2a3e4b977cf1fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
}

CONFIGS="slpkg.conf repositories.conf blacklist slackware-mirrors \
    default-repositories custom-repositories"
for file in $CONFIGS; do
    config etc/slpkg/${file}.new
done

if [ -x /usr/bin/update-desktop-database ]; then
  /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi