xbps-triggers: misc changes.
This commit is contained in:
parent
edd85ef4dd
commit
8b1240732c
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# (Un)registers GConf schemas/entries into the schemas database directory.
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates GLib GIO module cache with gio-querymodules.
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# GLib's GSettings XML schema files.
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates GTK+ icon cache file with gtk-update-icon-cache(1).
|
||||
#
|
||||
|
@ -33,10 +33,15 @@ run)
|
|||
done
|
||||
break
|
||||
fi
|
||||
|
||||
if [ ! -x ${iconcache_bin} ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
case "$TARGET" in
|
||||
post-*)
|
||||
for dir in ${gtk_iconcache_dirs}; do
|
||||
if [ -d "${dir}" -a -x ${iconcache_bin} ]; then
|
||||
if [ -d "${dir}" ]; then
|
||||
echo -n "Updating GTK+ icon cache for "
|
||||
echo "${dir}..."
|
||||
${iconcache_bin} -q -f -t ${dir}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates GTK+ IM modules file with gtk-query-immodules-2.0(1).
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates's GDK Pixbuf loaders cache with gdk-pixbuf-query-loaders(1).
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates GTK+3 IM modules file with gtk-query-immodules-3.0(1).
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Run scripts found in /etc/kernel.d/ directories.
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates the shared-mime-info db file with update-mime-database(1).
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Updates the list of pango modules with pango-querymodules(1).
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
#
|
||||
# Registers or unregisters a shell in /etc/shells.
|
||||
#
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'xbps-triggers'
|
||||
pkgname=xbps-triggers
|
||||
version=0.71
|
||||
version=0.72
|
||||
revision=1
|
||||
short_desc="The XBPS triggers for Void Linux"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
|
|
Loading…
Reference in New Issue