xbps-base-files: add a trigger to create/remove pango.modules. Bump to 0.9.
--HG-- extra : convert_revision : 86af6636d5dd27744d0eba53a277d41e49940c02
This commit is contained in:
parent
3da96cb6e4
commit
782873962b
2 changed files with 40 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
# Template file for 'xbps-base-files'
|
||||
pkgname=xbps-base-files
|
||||
version=0.8
|
||||
revision=1
|
||||
version=0.9
|
||||
build_style=custom-install
|
||||
short_desc="xbps base system files"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
|
|
39
triggers/pango-modules
Executable file
39
triggers/pango-modules
Executable file
|
@ -0,0 +1,39 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Updates the list of pango modules with pango-querymodules(1).
|
||||
#
|
||||
# Arguments: $1 = action [run/targets]
|
||||
# $2 = target [post-install/post-remove]
|
||||
# $3 = pkgname
|
||||
# $4 = version
|
||||
#
|
||||
trigger="pango-modules"
|
||||
pango_bin=./usr/bin/pango-querymodules
|
||||
pango_modules=./etc/pango/pango.modules
|
||||
|
||||
case "$1" in
|
||||
targets)
|
||||
echo "post-install post-remove"
|
||||
;;
|
||||
run)
|
||||
echo "Running $trigger trigger..."
|
||||
|
||||
case "$2" in
|
||||
post-*)
|
||||
if [ -f ${pango_modules} ]; then
|
||||
echo "Removing $trigger list file..."
|
||||
rm -f ${pango_modules}
|
||||
fi
|
||||
if [ -x ${pango_bin} ]; then
|
||||
echo "Creating $trigger list file..."
|
||||
${pango_bin} > ${pango_modules}
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*)
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
Loading…
Reference in a new issue