Sophie

Sophie

distrib > Mandriva > 8.1 > i586 > by-pkgid > fd318509fb42bc2a01ae8ec4be4901c3 > scriptlet

xmame-SDL-0.55.1-2mdk.i586.rpm

POSTIN

/bin/sh
if [ -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
update-alternatives --install /usr/bin/xmame xmame /usr/X11R6/bin/xmame.SDL-68k 9
update-alternatives --install /usr/bin/xmame xmame /usr/X11R6/bin/xmame.SDL     10
# without the following, the group stays in default manual mode,
#  and no link is created
[ -e /usr/bin/xmame ] || update-alternatives --auto xmame

POSTUN

/bin/sh
if [ "$1" = "0" -a -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi 
if [ "$1" = 0 ]; then
  # Remove update-alternatives entries
  update-alternatives --remove xmame /usr/X11R6/bin/xmame.SDL-68k
  update-alternatives --remove xmame /usr/X11R6/bin/xmame.SDL
  update-alternatives --auto xmame
fi