Update triggers to use passed args, use /bin/sh -e.
Bump xbps-base-files to 0.30. --HG-- extra : convert_revision : 6158c0bed798e097ba75c902a0be2498e3361e02
This commit is contained in:
parent
934de7606f
commit
af1b82c40a
13 changed files with 159 additions and 86 deletions
|
@ -1,28 +1,35 @@
|
|||
#!/bin/sh
|
||||
#!/bin/sh -e
|
||||
#
|
||||
# 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
|
||||
# Arguments: $ACTION = [run/targets]
|
||||
# $TARGET = [post-install/post-remove]
|
||||
# $PKGNAME
|
||||
# $VERSION
|
||||
# $UPDATE = [yes/no]
|
||||
#
|
||||
ACTION="$1"
|
||||
TARGET="$2"
|
||||
PKGNAME="$3"
|
||||
VERSION="$4"
|
||||
UPDATE="$5"
|
||||
|
||||
pango_bin=usr/bin/pango-querymodules
|
||||
pango_modules=etc/pango/pango.modules
|
||||
|
||||
case "$1" in
|
||||
case "$ACTION" in
|
||||
targets)
|
||||
echo "post-install post-remove"
|
||||
;;
|
||||
run)
|
||||
if [ "$2" = "post-remove" -a "${PKGNAME}" = "pango" ]; then
|
||||
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "pango" ]; then
|
||||
if [ -f ${pango_modules} ]; then
|
||||
echo "Removing pango modules file..."
|
||||
rm -f ${pango_modules}
|
||||
fi
|
||||
break
|
||||
fi
|
||||
case "$2" in
|
||||
case "$TARGET" in
|
||||
post-*)
|
||||
if [ -x ${pango_bin} ]; then
|
||||
echo "Updating pango modules file..."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue