summaryrefslogtreecommitdiffstats
path: root/devel/desktop-file-utils/files/pkg-install.in
blob: bafaa46a1f86ce2faf33532c0b42000009f20cfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# $FreeBSD$
#
# Initialize the desktop directories and MIME cache.

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

for pmdir in %%PORT_MIMEDIRS%%; do
    mkdir -p ${pmdir}
done

${PKG_PREFIX}/bin/update-desktop-database -q

exit 0