mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
25 lines
640 B
Bash
Executable File
25 lines
640 B
Bash
Executable File
#!/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 'Compiling GSchema'
|
|
glib-compile-schemas "$MESON_INSTALL_PREFIX/share/glib-2.0/schemas"
|
|
echo 'Updating mime database'
|
|
update-mime-database "$MESON_INSTALL_PREFIX/share/mime"
|
|
|
|
if [ -e "$MESON_INSTALL_PREFIX/bin/sysprof" ]; 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
|
|
|
|
fi
|