1 # GNU Install script for MPW.
6 Set TempUserStartup "{TempFolder}"__temp__UserStartup
8 Echo '# UserStartup generated by GNU Install script' > "{TempUserStartup}"
9 Echo '' >> "{TempUserStartup}"
11 # (should) Check that disk space is sufficient for installation.
13 # Assume that the install script is where everything else is.
15 Set thisdir "`Directory`"
17 # Copy the binaries to the desired place.
19 Confirm -t "Copy the binaries to somewhere else?"
20 Set TmpStatus {Status}
22 Set bindest "`GetFileName -d -m "Where to install the binaries?"`"
24 If "`Exists "{thisdir}bin"`" != ""
25 For afile In "{thisdir}"bin:\Option-x
26 Duplicate -y "{afile}" "{bindest}"
29 Echo "bin directory not found, exiting"
33 Echo "No destination supplied, exiting"
36 Else If {TmpStatus} == 4
37 # Use the existing directory.
38 Set bindest "{thisdir}bin:"
40 # Cancelled from confirmation, escape altogether.
44 # Copy the libraries to the desired place.
46 Confirm -t "Copy the libraries to somewhere else?"
47 Set TmpStatus {Status}
49 Set libdest "`GetFileName -d -m "Where to install the libraries?"`"
51 If "`Exists "{thisdir}lib:"`" != ""
52 For afile In "{thisdir}"lib:\Option-x
53 Duplicate -y "{afile}" "{libdest}"
56 Echo "lib directory not found, exiting"
60 Echo "No destination supplied, exiting"
63 Else If {TmpStatus} == 4
64 # Use the existing directory.
65 Set libdest "{thisdir}lib:"
67 # Cancelled from confirmation, escape altogether.
72 # Add the location of the binaries to the command path.
74 Echo -n 'Set Commands "' >> "{TempUserStartup}"
75 Echo -n "{bindest}" >> "{TempUserStartup}"
76 Echo ',{Commands}"' >> "{TempUserStartup}"
77 Echo '' >> "{TempUserStartup}"
79 # Set up GCC exec prefix.
81 Set gcclibdir "{libdest}"gcc-lib:
83 Echo -n 'Set GCC_EXEC_PREFIX "' >> "{TempUserStartup}"
84 Echo -n "{gcclibdir}" >> "{TempUserStartup}"
85 Echo '"' >> "{TempUserStartup}"
86 Echo "Export GCC_EXEC_PREFIX" >> "{TempUserStartup}"
87 Echo '' >> "{TempUserStartup}"
89 # Set up path to libgcc.xcoff etc.
91 Echo -n 'Set GCCPPCLibraries "' >> "{TempUserStartup}"
92 Echo -n "{libdest}" >> "{TempUserStartup}"
93 Echo '"' >> "{TempUserStartup}"
94 Echo "Export GCCPPCLibraries" >> "{TempUserStartup}"
95 Echo '' >> "{TempUserStartup}"
97 # Display contents of UserStartup, confirm installation.
99 Set UserStartupName "UserStartup\Option-8GNU"
101 Echo "Contents of" {UserStartupName} "will be:"
102 Catenate "{TempUserStartup}"
104 Confirm "Install {UserStartupName} into the MPW folder {MPW} ?"
106 Duplicate "{TempUserStartup}" "{MPW}{UserStartupName}"
107 Delete -y "{TempUserStartup}"
109 Echo "{UserStartupName} file not installed"
112 # (should) Check HEXA resource, warn if low.
114 # (should) Check for spaces in pathnames, warn if found.
116 Echo "Installation was successful."
118 Echo "Be sure to review the usage notes in 'Read Me for MPW' before proceeding!"
120 # Restore previous settings.