32 lines
498 B
Bash
Executable File
32 lines
498 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
|
|
#
|
|
mimedb_bin=usr/bin/update-mime-database
|
|
|
|
case "$1" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
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
|