From http://www.jwz.org/xscreensaver/xscreensaver-5.31.tar.gz
[xscreensaver] / OSX / installer.sh
1 #!/bin/sh
2 # XScreenSaver, Copyright © 2013-2014 Jamie Zawinski <jwz@jwz.org>
3 #
4 # Permission to use, copy, modify, distribute, and sell this software and its
5 # documentation for any purpose is hereby granted without fee, provided that
6 # the above copyright notice appear in all copies and that both that
7 # copyright notice and this permission notice appear in supporting
8 # documentation.  No representations are made about the suitability of this
9 # software for any purpose.  It is provided "as is" without express or 
10 # implied warranty.
11 #
12 # The guts of the installer.  Copies the screen savers out of the adjacent
13 # "Screen Savers" directory and into "/Library/Screen Savers/".  We do it
14 # this way instead of just including the screen savers in the package
15 # because that would double the size of the DMG.
16 #
17 # Created: 27-Jul-2013.
18
19 #exec >/tmp/xscreensaver.log 2>&1
20 #set -x
21
22 DEBUG=0
23 REQUIRED_SPACE=160      # MB. Highly approximate.
24
25 export PATH="/bin:/sbin:/usr/bin:/usr/sbin:$PATH"
26
27 function error() {
28   echo "XScreenSaver Installer: Error: $@" >&2
29
30   # Using "System Events" says "No user interaction allowed" on 10.9.
31   # But using "SystemUIServer" or "Automator Runner" still seems to work.
32   #
33   runner="System Events"
34   if [ -d "/System/Library/CoreServices/SystemUIServer.app" ]; then
35     runner="SystemUIServer"
36   elif [ -d "/System/Library/CoreServices/Automator Runner.app" ]; then
37     runner="Automator Runner"
38   fi
39
40   (
41     osascript <<__EOF__
42       tell app "$runner" to \
43         display dialog "$@" \
44         buttons "Bummer" \
45         default button 1 \
46         with icon 0 \
47         with title "Installation Error"
48 __EOF__
49   ) </dev/null >/dev/null 2>&1 &
50   exit 1
51 }
52
53
54 #if[ x"$DSTVOLUME"    = x ]; then error "DSTVOLUME unset";    fi
55 if [ x"$PACKAGE_PATH" = x ]; then error "PACKAGE_PATH unset"; fi
56 if [ x"$HOME"         = x ]; then error "HOME unset";         fi
57
58
59 echo "Destination: $DSTVOLUME" >&2
60
61 if [ x"$USER" = xjwz ]; then DEBUG=1; fi
62
63 if [ "$DEBUG" != 0 ]; then DSTVOLUME=/tmp; fi
64
65 SRC=`dirname "$PACKAGE_PATH"`/"Screen Savers"
66 DST1="$DSTVOLUME/Library/Screen Savers"
67 DST2="$DSTVOLUME/Applications"
68 PU="$DSTVOLUME/$HOME/Library/Screen Savers"
69
70 # Because of Sparkle.framework weirdness, ".XScreenSaverUpdater.app"
71 # is in the DMG, and we remove the leading dot when installing it.
72 # Without this, auto-updates won't work right.
73 #
74 UPDATER_SRC="XScreenSaver.updater"
75 UPDATER_DST="XScreenSaverUpdater.app"
76
77
78 cd "$SRC" || error "The 'Screen Savers' folder does not exist.
79
80 You can't copy the installer out of the Disk Image!"
81
82
83 free=`df -k "$DSTVOLUME" |
84      tail -1 | head -1 | awk '{print $4}'`
85 need=`echo $REQUIRED_SPACE \* 1024 | bc`
86 if [ "$free" -lt "$need" ]; then
87  free=`echo $free / 1024 | bc`
88  error "Not enough disk space: $free MB available, $REQUIRED_SPACE MB required."
89 fi
90
91
92 mkdir -p "$DST1" || error "Unable to create directory $DST1/"
93 mkdir -p "$DST2" || error "Unable to create directory $DST2/"
94
95 # Install the savers and the updater in /System/Library/Screen Savers/
96 # Install the other apps in /Applications/
97 #
98 for f in *.{saver,app} "$UPDATER_SRC" ; do
99   EXT=`echo "$f" | sed 's/^.*\.//'`
100   if [ "$f" = "$UPDATER_SRC" ]; then
101     DST="$DST1"
102   elif [ "$EXT" = "app" ]; then
103     DST="$DST2"
104   else
105     DST="$DST1"
106   fi
107
108   DD="$DST/$f"
109
110   echo "Installing $DD" >&2
111   rm -rf "$DD" || error "Unable to delete $DD"
112
113   if [ "$f" = "$UPDATER_SRC" ]; then
114     ( cd "$DST/" && tar -xzf - ) < "$f" || error "Unable to unpack $f in $DST/"
115   else
116     cp -pR "$f" "$DD" || error "Unable to install $f in $DST/"
117   fi
118
119   # Eliminate the "this was downloaded from the interweb" warning.
120   xattr -r -d com.apple.quarantine "$DD"
121
122   if [ "$EXT" = "app" ]; then
123     # Eliminate the "this is from an unknown developer" warning.
124     spctl --add "$DD"
125   fi
126
127   # If this saver or app is also installed in the per-user directory,
128   # delete that copy so that we don't have conflicts.
129   #
130   if [ "$DEBUG" = 0 ]; then
131     rm -rf "$PU/$f"
132   fi
133 done
134
135 # Launch System Preferences with the Screen Saver pane selected.
136 #
137 open /System/Library/PreferencePanes/DesktopScreenEffectsPref.prefPane &
138
139 exit 0