af1b82c40a
Bump xbps-base-files to 0.30. --HG-- extra : convert_revision : 6158c0bed798e097ba75c902a0be2498e3361e02
45 lines
848 B
Bash
Executable file
45 lines
848 B
Bash
Executable file
#!/bin/sh -e
|
|
#
|
|
# Updates the MIME database that connects with applications, through
|
|
# the update-desktop-database(1) utility.
|
|
#
|
|
# Arguments: $ACTION = [run/targets]
|
|
# $TARGET = [post-install/post-remove]
|
|
# $PKGNAME
|
|
# $VERSION
|
|
# $UPDATE = [yes/no]
|
|
#
|
|
ACTION="$1"
|
|
TARGET="$2"
|
|
PKGNAME="$3"
|
|
VERSION="$4"
|
|
UPDATE="$5"
|
|
|
|
desktopdb_bin=usr/bin/update-desktop-database
|
|
desktopdb_dir=usr/share/applications
|
|
desktopdb_cache=${desktopdb_dir}/mimeinfo.cache
|
|
|
|
case "$ACTION" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "desktop-file-utils" ]; then
|
|
[ -f ${desktopdb_cache} ] && rm -f ${desktopdb_cache}
|
|
break
|
|
fi
|
|
case "$TARGET" in
|
|
post-*)
|
|
if [ -x ${desktopdb_bin} ]; then
|
|
echo "Updating MIME database..."
|
|
${desktopdb_bin} ${desktopdb_dir}
|
|
fi
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|