summaryrefslogtreecommitdiff
path: root/meson_post_install.sh
blob: 6d29f9776a96f03a8a4f9d70ae8444f6ae15fdd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
if [ -z $MESON_INSTALL_PREFIX ]; then
    echo 'This is meant to be ran from Meson only!'
    exit 1
fi

if [ -z $DESTDIR ]; then
    echo 'Updating icon cache'
    gtk-update-icon-cache -qtf "$MESON_INSTALL_PREFIX/share/icons/hicolor"
    echo 'Updating desktop database'
    update-desktop-database -q "$MESON_INSTALL_PREFIX/share/applications"
fi