18 lines
360 B
Plaintext
Raw Normal View History

2024-03-01 23:15:01 +01:00
#!/bin/sh
#
# SPDX-License-Identifier: MIT
#
# Post-install intercept for gtk-icon-cache.bbclass
set -e
# Update native pixbuf loaders
$STAGING_DIR_NATIVE/${libdir_native}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders --update-cache
for icondir in $D/usr/share/icons/*/ ; do
if [ -d $icondir ] ; then
gtk-update-icon-cache -fqt $icondir
fi
done