blob: ede253472a208c2ec4376acaf28aaaa676699b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
#
# $FreeBSD$
#
# Initialize the desktop directories and MIME cache.
if [ "$2" != "POST-INSTALL" ]; then
exit 0
fi
${PKG_PREFIX}/bin/update-desktop-database -q
exit 0
|