6824115ca3
Version 13.29 OBS-URL: https://build.opensuse.org/request/show/1224822 OBS-URL: https://build.opensuse.org/package/show/graphics/gpxsee?expand=0&rev=274
23 lines
406 B
Bash
23 lines
406 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
configure)
|
|
if [ -x /usr/bin/update-mime-database ]; then
|
|
/usr/bin/update-mime-database /usr/share/mime > /dev/null
|
|
fi
|
|
if [ -x /usr/bin/update-desktop-database ]; then
|
|
/usr/bin/update-desktop-database > /dev/null
|
|
fi
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|