fca42f8372
desktop-file-utils contains a couple of command line utilities for working with desktop entries and the applications database. More specifically, it contains the update-desktop-database utility, used to rebuild the database that connects MIME types to applications.
13 lines
288 B
Text
13 lines
288 B
Text
# $NetBSD: INSTALL,v 1.1.1.1 2004/09/21 17:03:53 jmmv Exp $
|
|
|
|
APPLICATIONS_PATH="@APPLICATIONS_PATH@"
|
|
UPDATE_DESKTOPDB="@UPDATE_DESKTOPDB@"
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
${UPDATE_DESKTOPDB} ${APPLICATIONS_PATH}
|
|
;;
|
|
POST-DEINSTALL)
|
|
${RM} -f ${APPLICATIONS_PATH}/mimeinfo.cache
|
|
;;
|
|
esac
|