783dc64e4b
--HG-- extra : convert_revision : 38fd5a6f1aea9fc17b8c9055d8a56c9e5f4b8aa7
34 lines
556 B
Bash
Executable file
34 lines
556 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Updates the shared-mime-info db file with update-mime-database(1).
|
|
#
|
|
# Arguments: $1 = action [run/targets]
|
|
# $2 = target [post-install/post-remove]
|
|
# $3 = pkgname
|
|
# $4 = version
|
|
#
|
|
trigger="mimedb"
|
|
mimedb_bin=./usr/bin/update-mime-database
|
|
|
|
case "$1" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
echo "Running $trigger trigger..."
|
|
|
|
case "$2" 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
|