added is darwin check inside the prep script
[feisty_meow.git] / scripts / core / prep_feisty_host.sh
1 #!/usr/bin/env bash
2
3 # this is the feisty meow host preparation script.  it installs all the packages required to run and build feisty meow scripts and applications.
4
5 # preconditions and dependencies--this script itself depends on:
6 #   feisty meow
7 #   bash
8 #   anything else?
9
10 # note that this list of items is never totally complete, since feisty meow keeps expanding and mutating.  for example, we now have a few
11 # python scripts starting to sneak in.  there are assuredly lots of python packages we should be installing in here now, but we aren't yet.
12 # this is a best effort script, to at least get feisty meow able to run its core scripts and to build.  although it's always appreciated
13 # when things we rely on get installed too...
14
15 ####
16
17 ORIGINATING_FOLDER="$( \cd "$(\dirname "$0")" && /bin/pwd )"
18 CORE_SCRIPTS_DIR="$(echo "$ORIGINATING_FOLDER" | tr '\\\\' '/' )"
19 THIS_TOOL_NAME="$(basename "$0")"
20
21 # set up the feisty_meow dir.
22 pushd "$CORE_SCRIPTS_DIR/../.." &>/dev/null
23 #source "$CORE_SCRIPTS_DIR/functions.sh"
24 echo originating folder is $ORIGINATING_FOLDER
25 export FEISTY_MEOW_APEX="$(/bin/pwd)"
26 echo feisty now apex is FEISTY_MEOW_APEX=$FEISTY_MEOW_APEX
27
28 # establish whether this is darwin (MacOS) or not.
29 export IS_DARWIN="$(echo $OSTYPE | grep -i darwin)"
30
31 ####
32
33 # helper scripts...
34 #
35 # these come from other places in the feisty meow ecosystem, but they are here
36 # because this script is kind of a bootstrapping process for our scripts and code.
37 # we don't want to assume anything about the presence of the rest of feisty meow
38 # at this point in the process.
39
40 function exit_on_error() {
41   if [ $? -ne 0 ]; then
42     echo -e "\n\nan important action failed and this script will stop:\n\n$*\n\n*** Exiting script..."
43 #    error_sound
44     exit 1
45   fi
46 }
47
48 ####
49
50 function whichable()
51 {
52   local to_find="$1";
53   shift;
54   local WHICHER="$(/usr/bin/which which 2>/dev/null)";
55   if [ $? -ne 0 ]; then
56       echo;
57       return 2;
58   fi;
59   local sporkenz;
60   sporkenz=$($WHICHER "$to_find" 2>/dev/null);
61   local err=$?;
62   echo $sporkenz;
63   return $err
64 }
65
66 ####
67
68 #hmmm: copy to mainline scripts.
69 function apt_cyg_finder()
70 {
71   if whichable apt-cyg; then
72     return 0  # success.
73 #hmmm: is that the right syntax for bash?
74   else
75     echo "
76 The apt-cyg tool does not seem to be available for cygwin.
77 Please follow the install instructions at:
78     https://github.com/transcode-open/apt-cyg
79 "
80     return 13  # not found.
81   fi
82 }
83
84 ####
85
86 #hmmm: copy to mainline scripts also.
87 # figures out what kind of installation packager application is
88 # used on this machine and invokes it to install the list of
89 # packages provided as parameters.
90 function install_system_package()
91 {
92   local packages=("${@}")
93     # pull out the array of packages from the command line.
94   if whichable apt; then
95     # ubuntu or debian or other apt-based OSes...
96     sudo apt install "${packages[@]}"
97     return $?
98   elif whichable yum; then  
99     # rpm based with yum available...
100     sudo yum install "${packages[@]}"
101     return $?
102   elif [ ! -z "$IS_DARWIN" ]; then
103     # macos based...
104     brew install "${packages[@]}"
105     return $?
106   elif [ "$OS" == "Windows_NT" ]; then
107     # windows-based with cygwin (or we'll fail out currently).
108     if apt_cyg_finder; then
109       apt-cyg install perl-File-Which perl-Text-Diff
110       return $?
111     else
112       echo "apt-cyg is not currently available on this system.  please install cygwin and apt-cyg."
113       return 1
114     fi
115   else
116     echo "Unknown installer application for this platform."
117     return 1
118   fi
119 }
120
121 ####
122
123 # load feisty meow environment here, but first test that we *can* load it.
124
125 #hmmm: currently, this script needs the system to have already been configured?
126 #  that's the implication of calling launch_feisty...
127 #  can we find that same bootstrapping code that will reconfigure first?
128 #more about this...
129 #    hmmm: we need clean starty type approach!  must not expect feisty to already be configured for use!
130 #    e.g.?? $ bash /opt/feistymeow.org/feisty_meow/scripts/core/reconfigure_feisty_meow.sh
131 #    hmmm: above ALSO ESSENTIAL TO GET RIGHT!
132
133 BASE_PHASE_MESSAGE="Feisty Meow subsystems integrity check: "
134
135 # is our main variable set?
136 PHASE_MESSAGE="$BASE_PHASE_MESSAGE presence of FEISTY_MEOW_APEX variable"
137 if [ -z "$FEISTY_MEOW_APEX" ]; then
138   false; exit_on_error $PHASE_MESSAGE
139 fi
140
141 # simple brute force check.  can we go there?
142 PHASE_MESSAGE="$BASE_PHASE_MESSAGE check on directory $FEISTY_MEOW_APEX"
143 pushd $FEISTY_MEOW_APEX &> /dev/null
144 exit_on_error $PHASE_MESSAGE
145 popd &> /dev/null
146
147 # now ask feisty if it's there; should work as long as our scripts are in place.
148 #PHASE_MESSAGE="$BASE_PHASE_MESSAGE inquiry is_feisty_up"
149 #bash $FEISTY_MEOW_APEX/scripts/core/is_feisty_up.sh
150 #exit_on_error $PHASE_MESSAGE
151
152 # standard load-up.
153 #hmmm: this will currently fail if reconfigure has never been called.
154 #NO NO NO. source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
155 # we are preparing to get feisty running; how can we use feisty during
156 # that process?  so bad.
157
158 ####
159
160 # figure out which kind of OS we're on first, from ground up by seeing
161 # how this system can install things.
162
163 opsystem_here=unknown
164
165 if whichable apt; then
166   # ubuntu or debian or other apt-based OSes...
167   opsystem_here=debianesque
168 elif whichable yum; then  
169   # rpm based with yum available...
170   opsystem_here=redhatty
171 elif [ ! -z "$IS_DARWIN" ]; then
172   # macos based...
173   opsystem_here=macos
174 elif [ "$OS" == "Windows_NT" ]; then
175   # windows-based with cygwin (or we'll fail out currently).
176   opsystem_here=windoze
177 fi
178
179 ####
180
181 # default value of our package list is to fail out, since we
182 # may not be able to determine what OS this is running on.
183 PAX=(noop)
184
185 ####
186
187 # first we install the low-level crucial bits for scripts to work...
188
189 PHASE_MESSAGE="installing script modules"
190
191 if [ "$opsystem_here" == "debianesque" ]; then
192   PAX=(libfile-which-perl libtext-diff-perl)
193 elif [ "$opsystem_here" == "redhatty" ]; then
194   PAX=(perl-Env perl-File-Which perl-Text-Diff)
195 elif [ "$opsystem_here" == "macos" ]; then
196   PAX=(dos2unix openssl)
197 elif [ "$opsystem_here" == "windoze" ]; then
198   PAX=(perl-File-Which perl-Text-Diff)
199 fi
200
201 install_system_package "${PAX[@]}"
202 exit_on_error $PHASE_MESSAGE
203
204 ####
205
206 # then the builder packages...
207
208 PHASE_MESSAGE="installing code builder packages"
209
210 if [ "$opsystem_here" == "debianesque" ]; then
211   PAX=(mawk build-essential librtmp-dev libcurl4-gnutls-dev libssl-dev)
212 elif [ "$opsystem_here" == "redhatty" ]; then
213   PAX=(curl-devel gcc gcc-c++ make gawk openssl-devel.x86_64 zlib-devel)
214 elif [ "$opsystem_here" == "macos" ]; then
215   PAX=(mawk gpg meld openjdk)
216 elif [ "$opsystem_here" == "windoze" ]; then
217   PAX=(gawk libcurl-devel meld mingw64-i686-openssl openssl openssl-devel libssl-devel zlib-devel)
218 fi
219
220 install_system_package "${PAX[@]}"
221 exit_on_error $PHASE_MESSAGE
222
223 ####
224
225 # install other external packages and whatnot.
226
227 PHASE_MESSAGE="installing additional helper packages"
228
229 if [ "$opsystem_here" == "debianesque" ]; then
230   PAX=(screen python3 python3-pip xserver-xorg xorg-docs)
231 elif [ "$opsystem_here" == "redhatty" ]; then
232   PAX=(screen python3 python3-pip xserver-xorg xorg-docs)
233 elif [ "$opsystem_here" == "macos" ]; then
234   PAX=(screen python3 pip xserver-xorg xorg-docs)
235 elif [ "$opsystem_here" == "windoze" ]; then
236   PAX=(screen python3 pip3 xserver-xorg xorg-docs)
237 fi
238
239 install_system_package "${PAX[@]}"
240 exit_on_error $PHASE_MESSAGE
241
242 ####
243
244 # get ready to finish up.
245
246 #...finishing steps...  if any.
247
248 # all done now.
249 exit 0
250
251 ####
252
253
254 #############################
255 #scavenging line
256 #############################
257
258 #The "kona" collection depends on Java version 8 or better.
259 #| Ubuntu:
260 #| Set up the java PPA archive as described here:
261 #| https://launchpad.net/~webupd8team/+archive/ubuntu/java
262
263 #not needed at the moment.
264 #echo "bailing because script is immature.  farts!"
265 #exit 1
266