mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
f3653f73b8
Added the optional deps gtksourceview3 and webkit2gtk Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
11 lines
369 B
Bash
11 lines
369 B
Bash
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
|
|
fi
|
|
fi
|
|
|
|
if [ -e usr/share/glib-2.0/schemas ]; then
|
|
if [ -x /usr/bin/glib-compile-schemas ]; then
|
|
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
|
|
fi
|
|
fi
|