void-packages/helper-templates/update-mimedb.sh
Juan RP 84d4f6391a Change helper-templates files to mode 644.
--HG--
extra : convert_revision : a156c08bb49d2314e667b86feba5a5a3180e39f2
2008-10-13 07:51:55 +02:00

14 lines
393 B
Bash

#
# This helper updates shared-mime-info's database when a template
# requests this operation.
#
updatemimedb_cmd="$XBPS_MASTERDIR/bin/update-mime-database"
updatemimedb_dir="$XBPS_MASTERDIR/share/mime"
if [ -d "$XBPS_MASTERDIR/share/mime" ]; then
$updatemimedb_cmd $updatemimedb_dir >/dev/null && \
echo "=> Updated shared-mime-info database."
fi
unset updatemimedb_cmd updatemimedb_dir