mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
40 lines
595 B
Text
40 lines
595 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Updates GLib GIO module cache with gio-querymodules.
|
||
|
#
|
||
|
# Arguments: $ACTION = [run/targets]
|
||
|
# $TARGET = [post-install/post-remove]
|
||
|
# $PKGNAME
|
||
|
# $VERSION
|
||
|
# $UPDATE = [yes/no]
|
||
|
#
|
||
|
ACTION="$1"
|
||
|
TARGET="$2"
|
||
|
PKGNAME="$3"
|
||
|
VERSION="$4"
|
||
|
UPDATE="$5"
|
||
|
|
||
|
gioquery=usr/bin/gio-querymodules
|
||
|
giocachedir=usr/lib/gio/modules
|
||
|
|
||
|
case "$ACTION" in
|
||
|
targets)
|
||
|
echo "post-install post-remove"
|
||
|
;;
|
||
|
run)
|
||
|
case "$TARGET" in
|
||
|
post-*)
|
||
|
if [ -x ${gioquery} -a -d ${giocachedir} ]; then
|
||
|
echo "Updating GLib GIO modules cache..."
|
||
|
${gioquery} ${giocachedir}
|
||
|
fi
|
||
|
;;
|
||
|
esac
|
||
|
;;
|
||
|
*)
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|