329a7c18574ae7425563053a7038d005920761a9
[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=".XScreenSaverUpdater.app"
75
76
77 cd "$SRC" || error "The 'Screen Savers' folder does not exist.
78
79 You can't copy the installer out of the Disk Image!"
80
81
82 free=`df -k "$DSTVOLUME" |
83      tail -1 | head -1 | awk '{print $4}'`
84 need=`echo $REQUIRED_SPACE \* 1024 | bc`
85 if [ "$free" -lt "$need" ]; then
86  free=`echo $free / 1024 | bc`
87  error "Not enough disk space: $free MB available, $REQUIRED_SPACE MB required."
88 fi
89
90
91 mkdir -p "$DST1" || error "Unable to create directory $DST1/"
92 mkdir -p "$DST2" || error "Unable to create directory $DST2/"
93
94 # Install the savers and the updater in /System/Library/Screen Savers/
95 # Install the other apps in /Applications/
96 #
97 for f in *.{saver,app} "$UPDATER" ; do
98   EXT=`echo "$f" | sed 's/^.*\.//'`
99   if [ "$EXT" = "app" -a "$f" != "$UPDATER" ]; then
100     DST="$DST2"
101   else
102     DST="$DST1"
103   fi
104
105   f2=`echo "$f" | sed 's/^\.//'`   # install ".foo" as "foo"
106   DD="$DST/$f2"
107
108   echo "Installing $DD" >&2
109   rm -rf "$DD" || error "Unable to delete $DD"
110   cp -pR "$f" "$DD/" || error "Unable to install $f in $DST/"
111
112   # Eliminate the "this was downloaded from the interweb" warning.
113   xattr -r -d com.apple.quarantine "$DD"
114
115   if [ "$EXT" = "app" ]; then
116     # Eliminate the "this is from an unknown developer" warning.
117     spctl --add "$DD"
118   fi
119
120   # If this saver or app is also installed in the per-user directory,
121   # delete that copy so that we don't have conflicts.
122   #
123   if [ "$DEBUG" = 0 ]; then
124     rm -rf "$PU/$f"
125   fi
126 done
127
128 # Launch System Preferences with the Screen Saver pane selected.
129 #
130 open /System/Library/PreferencePanes/DesktopScreenEffectsPref.prefPane &
131
132 exit 0