postinst is in bamfdaemon 0.2.118-1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/sh
set -e
if [ "$1" = "configure" ] || [ "$1" = "triggered" ]; then
if [ -d /usr/share/applications ]; then
# rebuild index
I=/usr/share/applications/bamf.index
echo "Rebuilding $I..."
rm -f $I
perl -ne 'if (/^Exec=(.+)$/) { $f = (split "/", $ARGV)[-1]; print "$f\t$1\n"; }' /usr/share/applications/*.desktop > $I.new || rm -f $I.new
[ -e $I.new ] && mv $I.new $I || true
fi
fi
|