Rename helper-templates to just helpers.
--HG-- extra : convert_revision : cbaa30da99805accbe250d8dee5494c78cb93291
This commit is contained in:
parent
25a6af5a07
commit
5bb36505b1
15 changed files with 9 additions and 9 deletions
17
helpers/gtk-update-immodules.sh
Normal file
17
helpers/gtk-update-immodules.sh
Normal file
|
@ -0,0 +1,17 @@
|
|||
#
|
||||
# This helper updates GTK's gtk.immodules modules file every time
|
||||
# a template requests this process.
|
||||
#
|
||||
gtk_version="2.0"
|
||||
gtk_query_immodules_cmd=$XBPS_MASTERDIR/bin/gtk-query-immodules-$gtk_version
|
||||
gtk_immodules_db=$XBPS_SYSCONFDIR/gtk-$gtk_version/gtk.immodules
|
||||
|
||||
if [ -x $gtk_query_immodules_cmd -a -w $gtk_immodules_db ]; then
|
||||
$gtk_query_immodules_cmd > $gtk_immodules_db
|
||||
[ "$?" -eq 0 ] && \
|
||||
echo "=> Updated GTK+ $(basename $gtk_immodules_db) modules file."
|
||||
fi
|
||||
|
||||
unset gtk_version
|
||||
unset gtk_query_immodules_cmd
|
||||
unset gtk_immodules_db
|
Loading…
Add table
Add a link
Reference in a new issue