blob: f28dff2ca262702a46d426e660caf6f5f6fdeb7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require shared-mime-info.inc
PR = "r2"
pkg_postinst () {
if [ "x$D" != "x" ]; then
exit 1
fi
echo "Updating MIME database... this may take a while."
${bindir}/update-mime-database ${datadir}/mime
}
|