summaryrefslogtreecommitdiff
path: root/devel/desktop-file-utils/files/pkg-deinstall.in
blob: 1052c08f1529d387f55e800481c83b9ae2982236 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# Remove leftover mimeinfo.cache files.

if [ "$2" != "POST-DEINSTALL" ]; then
    exit 0
fi

for mdir in %%MIMEDIRS%%; do
    if [ -f ${mdir}/mimeinfo.cache ]; then
	rm -f ${mdir}/mimeinfo.cache
    fi
done

exit 0