home *** CD-ROM | disk | FTP | other *** search
/ Fish With Names Like... / Fish With Names Like... 2.5.iso / pc / QuickTime / QuickTimeInstallerX.dmg / QuickTime65.pkg / Contents / Resources / wrapplugin < prev   
Encoding:
Text File  |  2003-11-05  |  289 b   |  12 lines

  1. #!/bin/sh
  2. #
  3.  
  4. LIPO="$1"/Contents/Resources/lipo
  5. QUICKTIMEPLUGIN="/Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin"
  6.  
  7. if [ -f "$3/$QUICKTIMEPLUGIN" ]; then
  8.     if [ -f "$LIPO" ]; then
  9.         "$LIPO" "$3/$QUICKTIMEPLUGIN" -create -output "$3/$QUICKTIMEPLUGIN"
  10.     fi
  11. fi
  12.