xbps-triggers: misc changes.

This commit is contained in:
Juan RP 2013-07-11 08:54:15 +02:00
parent edd85ef4dd
commit 8b1240732c
12 changed files with 18 additions and 13 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# (Un)registers GConf schemas/entries into the schemas database directory.
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Updates GLib GIO module cache with gio-querymodules.
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# GLib's GSettings XML schema files.
#

View file

@ -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}

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Updates GTK+ IM modules file with gtk-query-immodules-2.0(1).
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Updates's GDK Pixbuf loaders cache with gdk-pixbuf-query-loaders(1).
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Updates GTK+3 IM modules file with gtk-query-immodules-3.0(1).
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Run scripts found in /etc/kernel.d/ directories.
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Updates the shared-mime-info db file with update-mime-database(1).
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Updates the list of pango modules with pango-querymodules(1).
#

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
#
# Registers or unregisters a shell in /etc/shells.
#

View file

@ -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>"