blob: 3d2a614bd1e9d1073231c05b0f42effa46ce21e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require shared-mime-info.inc
PR = "r1"
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
}
|