I would like to know .. if you .. have the original cinelerra.postrm OR help
me to remove the cinelerra installed on my hardy heron....


I'm sending my file for you take a look ... thanks.
----------------------*

#! /bin/sh
set -e

# Define
IC=cinestart
SCRIPT=/etc/init.d/$IC
STARTCINELERRA=/usr/bin/Cinelerra
STARTSUCINELERRA=/usr/bin/Cinelerra-admin
MAPP=/var/lib/locales/supported.d

# remove prev script settings
 if ls $MAPP | grep cinelerra
then
rm $MAPP/*cinelerra
/usr/sbin/locale-gen --purge
fi

if [ "$1" = "remove" ] ; then
if /usr/bin/lsb_release -d | grep buntu
then
for i in de_DE es_ES fr_FR it_IT pt_BR sl_SI eu_ES eu_FR
do
if localedef --list-archive | grep $i | grep iso885915
then
localedef --delete-from-archive $i.iso885915

done
 fi this remove iso-8859-15 to your lang ( usefull to build new lang )
i=$(echo $LANG | sed -e s/\.UTF-8//g)
 if ! localedef --list-archive | grep $i | grep iso885915
then localedef --delete-from-archive $i.ISO-8859-15 &> /dev/null
  fi
rm $STARTCINELERRA
rm $STARTSUCINELERRA
/usr/sbin/update-rc.d -f $IC remove
rm $SCRIPT
rm /usr/share/applications/cinelerra-admin.desktop

  fi

  fi
exit 0
*---------------------

Reply via email to