home *** CD-ROM | disk | FTP | other *** search
/ Macwelt 4 / Macwelt DVD 4.cdr / Entwickler / Mac-OS X / ABC.1.2.3-demo.pkg / ABC.1.2.3-demo.pre_install < prev    next >
Encoding:
Text File  |  2002-09-30  |  841 b   |  34 lines

  1. #!/bin/sh
  2.  
  3. # remove old version...
  4.  
  5. if [ -d /Applications/Utilities/ABCArchiveBuilder.app ]; then
  6.     /bin/rm -Rf /Applications/Utilities/ABCArchiveBuilder.app
  7. fi
  8.  
  9. if [ -d /Library/Frameworks/ABCFoundation.framework ]; then
  10.     /bin/rm -Rf /Library/Frameworks/ABCFoundation.framework
  11. fi
  12.  
  13. if [ -d /Library/Frameworks/ABCApplication.framework ]; then
  14.     /bin/rm -Rf /Library/Frameworks/ABCApplication.framework
  15. fi
  16.  
  17. if [ -d /Library/Palettes/ABCWidgetsOne.palette ]; then
  18.     /bin/rm -Rf /Library/Palettes/ABCWidgetsOne.palette
  19. fi
  20.  
  21. if [ -d /Library/Palettes/ABCWidgetsTwo.palette ]; then
  22.     /bin/rm -Rf /Library/Palettes/ABCWidgetsTwo.palette
  23. fi
  24.  
  25. if [ -d /Library/Palettes/ABCWidgetsThree.palette ]; then
  26.     /bin/rm -Rf /Library/Palettes/ABCWidgetsThree.palette
  27. fi
  28.  
  29. if [ -d /Library/Jiiva/ABC ]; then
  30.     /bin/rm -Rf /Library/Jiiva/ABC
  31. fi
  32.  
  33.  
  34.