af1b82c40a
Bump xbps-base-files to 0.30. --HG-- extra : convert_revision : 6158c0bed798e097ba75c902a0be2498e3361e02
38 lines
584 B
Bash
Executable file
38 lines
584 B
Bash
Executable file
#!/bin/sh -e
|
|
#
|
|
# Updates the shared-mime-info db file with update-mime-database(1).
|
|
#
|
|
# Arguments: $ACTION = [run/targets]
|
|
# $TARGET = [post-install/post-remove]
|
|
# $PKGNAME
|
|
# $VERSION
|
|
# $UPDATE = [yes/no]
|
|
#
|
|
ACTION="$1"
|
|
TARGET="$2"
|
|
PKGNAME="$3"
|
|
VERSION="$4"
|
|
UPDATE="$5"
|
|
|
|
mimedb_bin=usr/bin/update-mime-database
|
|
|
|
case "$ACTION" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
case "$TARGET" in
|
|
post-*)
|
|
if [ -x ${mimedb_bin} ]; then
|
|
echo "Updating shared-mime-info database..."
|
|
${mimedb_bin} usr/share/mime > /dev/null
|
|
fi
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|