home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gimp.preinst < prev    next >
Encoding:
Text File  |  2007-01-16  |  331 b   |  12 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "install" -o "$1" = "upgrade" ]; then
  4.     # Clean up older links from this package
  5.     update-alternatives --remove gimp /usr/bin/gimp-1.2
  6.     update-alternatives --remove gimptool /usr/bin/gimptool-1.3
  7.     update-alternatives --remove gimp /usr/bin/gimp-2.0
  8.     update-alternatives --remove gimp /usr/bin/gimp-2.2
  9. fi
  10.  
  11.  
  12.