mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-29 17:02:56 +02:00
xbps-triggers: add file missed in previous.
This commit is contained in:
parent
49c1426e0b
commit
5b303e3c88
1 changed files with 43 additions and 0 deletions
43
srcpkgs/xbps-triggers/files/gtk3-immodules
Executable file
43
srcpkgs/xbps-triggers/files/gtk3-immodules
Executable file
|
@ -0,0 +1,43 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
#
|
||||||
|
# Updates GTK+3 IM modules file with gtk-query-immodules-3.0(1).
|
||||||
|
#
|
||||||
|
# Arguments: $ACTION = [run/targets]
|
||||||
|
# $TARGET = [post-install/post-remove]
|
||||||
|
# $PKGNAME
|
||||||
|
# $VERSION
|
||||||
|
# $UPDATE = [yes/no]
|
||||||
|
#
|
||||||
|
ACTION="$1"
|
||||||
|
TARGET="$2"
|
||||||
|
PKGNAME="$3"
|
||||||
|
VERSION="$4"
|
||||||
|
UPDATE="$5"
|
||||||
|
|
||||||
|
immodules_bin=usr/bin/gtk-query-immodules-3.0
|
||||||
|
immodules_db=etc/gtk-3.0/gtk.immodules
|
||||||
|
|
||||||
|
case "$ACTION" in
|
||||||
|
targets)
|
||||||
|
echo "post-install post-remove"
|
||||||
|
;;
|
||||||
|
run)
|
||||||
|
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "gtk+3" ]; then
|
||||||
|
[ -f ${immodules_db} ] && rm -f ${immodules_db}
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
case "$TARGET" in
|
||||||
|
post-*)
|
||||||
|
if [ -x ${immodules_bin} ]; then
|
||||||
|
echo "Updating GTK+'s immodules database..."
|
||||||
|
${immodules_bin} > ${immodules_db}
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Add table
Reference in a new issue