3 # Script for building AROS from the Subversion repository
5 # Currently only a limited amount of Linux distros is supported.
6 # If you improve this script, send modifications back to me, please.
7 # Matthias Rustler, mailto:mrustler@gmx.de
9 # This script is public domain. Use it at your own risk.
11 # $VER: gimmearos.sh 1.12 (10.02.2015) WIP
15 srcdir_v0
="aros-src-v0"
16 portsdir
="$HOME/aros-ports-src"
23 echo "install_pkg() needs 2 arguments"
26 echo -e "\nInstalling " $2
30 echo -e "\n install failed. Script cancelled."
37 echo -e "***********************************************"
38 echo -e "* Script for downloading and building of AROS *"
39 echo -e "***********************************************"
41 echo -e "*********************************"
42 echo -e "* Step 1: install prerequisites *"
43 echo -e "*********************************"
44 echo -e "The build system needs some packages to do its job."
45 echo -e "If you are asked for a password enter you admin password."
46 echo -e "\n1 .. Get packages with apt-get for Debian and similar (e.g. Ubuntu)"
47 echo -e " for building 32-bit AROS on 32-bit Linux or 64-bit-AROS on 64-bit-Linux"
48 echo -e "2 .. As 1) but with additional packages for building 32-bit AROS"
49 echo -e " on 64-bit Linux"
50 echo -e "3 .. Get packages with yum for Fedora"
51 echo -e "4 .. Get packages with pacman for Arch"
52 echo -e "5 .. Get packages with zypper for openSuse"
53 echo -e "6 .. As 5) but with additional packages for building 32-bit AROS"
54 echo -e " on 64-bit Linux"
55 echo -e "9 .. Skip this step"
58 echo -e "\nEnter number and press <Enter>:"
62 1 ) echo -e "\nInstalling prerequisites with apt-get..."
63 install_pkg
"apt-get install" subversion
64 install_pkg
"apt-get install" git-core
65 install_pkg
"apt-get install" gcc
66 install_pkg
"apt-get install" g
++
67 install_pkg
"apt-get install" make
68 install_pkg
"apt-get install" gawk
69 install_pkg
"apt-get install" bison
70 install_pkg
"apt-get install" flex
71 install_pkg
"apt-get install" bzip2
72 install_pkg
"apt-get install" netpbm
73 install_pkg
"apt-get install" autoconf
74 install_pkg
"apt-get install" automake
75 install_pkg
"apt-get install" libx11-dev
76 install_pkg
"apt-get install" libxext-dev
77 install_pkg
"apt-get install" libc6-dev
78 install_pkg
"apt-get install" liblzo2-dev
79 install_pkg
"apt-get install" libxxf86vm-dev
80 install_pkg
"apt-get install" libpng12-dev
81 install_pkg
"apt-get install" gcc-multilib
82 install_pkg
"apt-get install" libsdl1.2
-dev
83 install_pkg
"apt-get install" byacc
86 2 ) echo -e "\nInstalling prerequisites with apt-get..."
87 install_pkg
"apt-get install" subversion
88 install_pkg
"apt-get install" git-core
89 install_pkg
"apt-get install" gcc
90 install_pkg
"apt-get install" g
++
91 install_pkg
"apt-get install" make
92 install_pkg
"apt-get install" gawk
93 install_pkg
"apt-get install" bison
94 install_pkg
"apt-get install" flex
95 install_pkg
"apt-get install" bzip2
96 install_pkg
"apt-get install" netpbm
97 install_pkg
"apt-get install" autoconf
98 install_pkg
"apt-get install" automake
99 install_pkg
"apt-get install" libx11-dev
100 install_pkg
"apt-get install" libxext-dev
101 install_pkg
"apt-get install" libc6-dev
102 install_pkg
"apt-get install" liblzo2-dev
103 install_pkg
"apt-get install" libxxf86vm-dev
104 install_pkg
"apt-get install" libpng12-dev
105 install_pkg
"apt-get install" gcc-multilib
106 install_pkg
"apt-get install" libsdl1.2
-dev
107 install_pkg
"apt-get install" byacc
109 install_pkg
"apt-get install" libc6-dev-i386
110 install_pkg
"apt-get install" lib32gcc1
111 install_pkg
"apt-get install" ia32-libs
114 3 ) echo -e "\nInstalling prerequisites with yum..."
115 install_pkg
"yum install" subversion
116 install_pkg
"yum install" git-core
117 install_pkg
"yum install" gcc
118 install_pkg
"yum install" gawk
119 install_pkg
"yum install" bison
120 install_pkg
"yum install" flex
121 install_pkg
"yum install" bzip2
122 install_pkg
"yum install" netpbm
123 install_pkg
"yum install" autoconf
124 install_pkg
"yum install" automake
125 install_pkg
"yum install" libX11-devel
126 install_pkg
"yum install" glibc-devel
127 install_pkg
"yum install" lzo-devel
130 4 ) echo -e "\nInstalling prerequisites with pacman.."
131 echo -e "\nUpdating the List of software"
132 echo -e "\nEnter sudo password"
134 install_pkg
"pacman --needed --noconfirm -S" subversion
135 install_pkg
"pacman --needed --noconfirm -S" git-core
136 install_pkg
"pacman --needed --noconfirm -S" gcc
137 install_pkg
"pacman --needed --noconfirm -S" gawk
138 install_pkg
"pacman --needed --noconfirm -S" bison
139 install_pkg
"pacman --needed --noconfirm -S" flex
140 install_pkg
"pacman --needed --noconfirm -S" bzip2
141 install_pkg
"pacman --needed --noconfirm -S" netpbm
142 install_pkg
"pacman --needed --noconfirm -S" autoconf
143 install_pkg
"pacman --needed --noconfirm -S" automake
144 #it appears as though the libx11-dev,libc6-dev,liblzo2-dev is not needed on arch
147 5 ) echo -e "\nInstalling prerequisites with zypper..."
149 install_pkg
"zypper --non-interactive install" subversion
150 install_pkg
"zypper --non-interactive install" git-core
151 install_pkg
"zypper --non-interactive install" gcc
152 install_pkg
"zypper --non-interactive install" gcc-c
++
153 install_pkg
"zypper --non-interactive install" make
154 install_pkg
"zypper --non-interactive install" gawk
155 install_pkg
"zypper --non-interactive install" bison
156 install_pkg
"zypper --non-interactive install" flex
157 install_pkg
"zypper --non-interactive install" bzip2
158 install_pkg
"zypper --non-interactive install" netpbm
159 install_pkg
"zypper --non-interactive install" autoconf
160 install_pkg
"zypper --non-interactive install" automake
161 install_pkg
"zypper --non-interactive install" patch
162 install_pkg
"zypper --non-interactive install" cmake
163 install_pkg
"zypper --non-interactive install" gperf
164 install_pkg
"zypper --non-interactive install" perl-Switch
165 install_pkg
"zypper --non-interactive install" byacc
168 install_pkg
"zypper --non-interactive install" libXxf86vm1
171 install_pkg
"zypper --non-interactive install" libX11-devel
172 install_pkg
"zypper --non-interactive install" glibc-devel
173 install_pkg
"zypper --non-interactive install" libpng12-devel
176 6 ) echo -e "\nInstalling prerequisites with zypper..."
178 install_pkg
"zypper --non-interactive install" subversion
179 install_pkg
"zypper --non-interactive install" git-core
180 install_pkg
"zypper --non-interactive install" gcc
181 install_pkg
"zypper --non-interactive install" gcc-c
++
182 install_pkg
"zypper --non-interactive install" make
183 install_pkg
"zypper --non-interactive install" gawk
184 install_pkg
"zypper --non-interactive install" bison
185 install_pkg
"zypper --non-interactive install" flex
186 install_pkg
"zypper --non-interactive install" bzip2
187 install_pkg
"zypper --non-interactive install" netpbm
188 install_pkg
"zypper --non-interactive install" autoconf
189 install_pkg
"zypper --non-interactive install" automake
190 install_pkg
"zypper --non-interactive install" patch
191 install_pkg
"zypper --non-interactive install" cmake
192 install_pkg
"zypper --non-interactive install" gperf
193 install_pkg
"zypper --non-interactive install" perl-Switch
194 install_pkg
"zypper --non-interactive install" byacc
197 install_pkg
"zypper --non-interactive install" libXxf86vm1
200 install_pkg
"zypper --non-interactive install" libX11-devel
201 install_pkg
"zypper --non-interactive install" glibc-devel
202 install_pkg
"zypper --non-interactive install" libpng12-devel
205 install_pkg
"zypper --non-interactive install" gcc-32bit
206 install_pkg
"zypper --non-interactive install" gcc-c
++-32bit
207 install_pkg
"zypper --non-interactive install" glibc-devel-32bit
208 install_pkg
"zypper --non-interactive install" libXxf86vm1-32bit
218 until [ "$input" = "9" ]
221 echo -e "***********************************************"
222 echo -e "* Step 2: get the sources from the repository *"
223 echo -e "***********************************************"
224 echo -e "\nYou can either use Subversion or Git. Git doesn't require"
225 echo -e "a password, but you'll get only read-only access."
226 echo -e "The repositories will be checked out into the current directory."
227 echo -e "\nABI V1 is the current development version which is no longer"
228 echo -e "binary compatible with V0."
229 echo -e "\nABI V1 with | ABI V0 with | ABI V1 |"
230 echo -e "Subversion | Subversion | with GIT | Content"
231 echo -e "------------+-------------+----------+--------------------------"
232 echo -e " 1 | 11 | 21 | Get AROS core (required)"
233 echo -e " 2 | 12 | 22 | Get contrib (optional)"
234 echo -e "\n 3 | 13 | 23 | Get ports source (optional, needs contrib)"
235 echo -e "\n 4 | 14 | --- | Get documentation source (optional)"
236 echo -e " 5 | 15 | --- | Get binaries (wallpapers, logos etc.) (optional)"
237 echo -e "\n9 .. Go to next step"
240 echo -e "\nEnter number and press <Enter>:"
244 1 ) echo -e "\nGetting AROS V1 core with Subversion...\n"
245 svn checkout https
://svn.aros.org
/svn
/aros
/trunk
/AROS
"$srcdir"
247 2 ) echo -e "\nGetting contrib V1 with Subversion...\n"
248 svn checkout https
://svn.aros.org
/svn
/aros
/trunk
/contrib
"$srcdir/contrib"
250 3 ) echo -e "\nGetting ports V1 with Subversion...\n"
251 svn checkout https
://svn.aros.org
/svn
/aros
/trunk
/ports
"$srcdir/ports"
253 4 ) echo -e "\nGetting documentation V1 with Subversion...\n"
254 svn checkout https
://svn.aros.org
/svn
/aros
/trunk
/documentation
"$srcdir/documentation"
256 5 ) echo -e "\nGetting binaries V1 with Subversion...\n"
257 svn checkout https
://svn.aros.org
/svn
/aros
/trunk
/binaries
"$srcdir/binaries"
260 11 ) echo -e "\nGetting AROS V0 core with Subversion...\n"
261 svn checkout https
://svn.aros.org
/svn
/aros
/branches
/ABI_V
0/AROS
"$srcdir_v0"
263 12 ) echo -e "\nGetting contrib V0 with Subversion...\n"
264 svn checkout https
://svn.aros.org
/svn
/aros
/branches
/ABI_V
0/contrib
"$srcdir_v0/contrib"
266 13 ) echo -e "\nGetting ports V0 with Subversion...\n"
267 svn checkout https
://svn.aros.org
/svn
/aros
/branches
/ABI_V
0/ports
"$srcdir_v0/ports"
269 14 ) echo -e "\nGetting documentation V1 with Subversion...\n"
270 svn checkout https
://svn.aros.org
/svn
/aros
/branches
/ABI_V
0/documentation
"$srcdir_v0/documentation"
272 15 ) echo -e "\nGetting binaries V1 with Subversion...\n"
273 svn checkout https
://svn.aros.org
/svn
/aros
/branches
/ABI_V
0/binaries
"$srcdir_v0/binaries"
276 21 ) echo -e "\nGetting AROS V1 core with Git...\n"
277 git clone git
://repo.or.cz
/AROS.git
"$srcdir"
279 22 ) echo -e "\nGetting contrib V1 with Git...\n"
280 git clone git
://repo.or.cz
/AROS-Contrib.git
"$srcdir/contrib"
282 23 ) echo -e "\nGetting ports V1 with Git...\n"
283 git clone git
://repo.or.cz
/AROS-Ports.git
"$srcdir/ports"
295 until [ "$input" = "9" ]
300 echo -e "*********************"
301 echo -e "* Step 3: configure *"
302 echo -e "*********************"
303 echo -e "\nABI V1 | ABI V0 |"
304 echo -e "-------+--------+----------------------------"
305 echo -e " 1 | 11 | linux-i386 (32-bit) debug"
306 echo -e " 2 | 12 | linux-i386 (32-bit)"
307 echo -e " 3 | | linux-x86_64 (64-bit) debug"
308 echo -e " 4 | | linux-x86_64 (64-bit)"
309 echo -e " 5 | 15 | pc-i386 (32-bit)"
310 echo -e " 6 | | pc-x86_64 (64-bit)"
311 echo -e " 7 | | amiga-m68k (32-bit)"
312 echo -e " 8 | | raspi-armhf (32-bit)"
313 echo -e "\n9 .. Go to next step"
316 echo -e "\nEnter number and press <Enter>:"
320 1 ) echo -e "\nConfiguring linux-i386 V1 with full debug...\n"
322 mkdir
-p aros-linux-i386-dbg
323 cd aros-linux-i386-dbg
324 "../$srcdir/configure" --target=linux-i386
--enable-debug=all
--with-portssources="$portsdir"
326 2 ) echo -e "\nConfiguring linux-i386 V1 without debug...\n"
328 mkdir
-p aros-linux-i386
330 "../$srcdir/configure" --target=linux-i386
--with-portssources="$portsdir"
332 3 ) echo -e "\nConfiguring linux-x86_64 V1 with full debug...\n"
334 mkdir
-p aros-linux-x86_64-dbg
335 cd aros-linux-x86_64-dbg
336 "../$srcdir/configure" --target=linux-x86_64
--enable-debug=all
--with-portssources="$portsdir"
338 4 ) echo -e "\nConfiguring linux-x86_64 V1 without debug...\n"
340 mkdir
-p aros-linux-x86_64
342 "../$srcdir/configure" --target=linux-x86_64
--with-portssources="$portsdir"
344 5 ) echo -e "\nConfiguring pc-i386 V1...\n"
346 mkdir
-p aros-pc-i386
348 "../$srcdir/configure" --target=pc-i386
--with-portssources="$portsdir"
350 6 ) echo -e "\nConfiguring pc-x86_64 V1...\n"
352 mkdir
-p aros-pc-x86_64
354 "../$srcdir/configure" --target=pc-x86_64
--with-portssources="$portsdir"
356 7 ) echo -e "\nConfiguring amiga-m68k V1...\n"
358 mkdir
-p aros-amiga-m68k
360 "../$srcdir/configure" --target=amiga-m68k
--with-serial-debug=yes --with-portssources="$portsdir"
362 8 ) echo -e "\nConfiguring raspi-armhf V1...\n"
364 mkdir
-p aros-raspi-armhf
366 "../$srcdir/configure" --target=raspi-armhf
--with-portssources="$portsdir"
369 11 ) echo -e "\nConfiguring linux-i386 V0 with full debug...\n"
371 mkdir
-p aros-linux-i386-v0-dbg
372 cd aros-linux-i386-v0-dbg
373 "../$srcdir_v0/configure" --target=linux-i386
--enable-debug=all
--with-portssources="$portsdir"
375 12 ) echo -e "\nConfiguring linux-i386 V0 without debug...\n"
377 mkdir
-p aros-linux-i386-v0
378 cd aros-linux-i386-v0
379 "../$srcdir_v0/configure" --target=linux-i386
--with-portssources="$portsdir"
381 15 ) echo -e "\nConfiguring pc-i386 V0...\n"
383 mkdir
-p aros-pc-i386-v0
385 "../$srcdir_v0/configure" --target=pc-i386
--with-portssources="$portsdir"
397 until [ "$input" = "9" ]
402 echo -e "*****************"
403 echo -e "* Step 4: build *"
404 echo -e "*****************"
405 echo -e "\nYou can only build what you've already configured."
406 echo -e "\nABI V1 | ABI V0 |"
407 echo -e "-------+--------+----------------------------"
408 echo -e " 1 | 11 | linux-i386 (32-bit) debug"
409 echo -e " 2 | 12 | linux-i386 (32-bit)"
410 echo -e " 3 | | linux-x86_64 (64-bit) debug"
411 echo -e " 4 | | linux-x86_64 (64-bit)"
412 echo -e " 5 | 15 | pc-i386 (32-bit)"
413 echo -e " 6 | | pc-x86_64 (64-bit)"
414 echo -e " 7 | | amiga-m68k (32-bit)"
415 echo -e " 8 | | raspi-armhf (32-bit)"
416 echo -e "\n9 .. Go to next step"
418 echo -e "\nEnter number and press <Enter>:"
422 1 ) echo -e "\nBuilding linux-i386 V1 with full debug...\n"
423 cd aros-linux-i386-dbg
425 make $makeopts contrib
427 echo -e "\nIf everything went well AROS will be available"
428 echo -e "in the directory aros-linux-i386-dbg/bin/<target>/AROS"
430 2 ) echo -e "\nBuilding linux-i386 V1 without debug...\n"
433 make $makeopts contrib
435 echo -e "\nIf everything went well AROS will be available"
436 echo -e "in the directory aros-linux-i386/bin/<target>/AROS"
438 3 ) echo -e "\nBuilding linux-x86_64 V1 with full debug...\n"
439 cd aros-linux-x86_64-dbg
441 make $makeopts contrib
443 echo -e "\nIf everything went well AROS will be available"
444 echo -e "in the directory aros-linux-x86_64-dbg/bin/<target>/AROS"
446 4 ) echo -e "\nBuilding linux-x86_64 V1 without debug...\n"
449 make $makeopts contrib
451 echo -e "\nIf everything went well AROS will be available"
452 echo -e "in the directory aros-linux-x86_64/bin/<target>/AROS"
454 5 ) echo -e "\nBuilding pc-i386 V1...\n"
457 make $makeopts contrib
459 make $makeopts distfiles
460 echo -e "\nIf everything went well AROS will be available"
461 echo -e "in the directory aros-pc-i386/distfiles"
463 6 ) echo -e "\nBuilding pc-x86_64 V1...\n"
466 make $makeopts contrib
468 make $makeopts distfiles
469 echo -e "\nIf everything went well AROS will be available"
470 echo -e "in the directory aros-pc-x86_64/distfiles"
472 7 ) echo -e "\nBuilding amiga-m68k V1...\n"
475 make $makeopts contrib
477 make $makeopts distfiles
478 echo -e "\nIf everything went well AROS will be available"
479 echo -e "in the directory aros-amiga-m68k/distfiles"
481 8 ) echo -e "\nBuilding raspi-armhf V1...\n"
484 make $makeopts contrib
486 make $makeopts distfiles
487 echo -e "\nIf everything went well AROS will be available"
488 echo -e "in the directory aros-raspi-armhf/distfiles"
491 11 ) echo -e "\nBuilding linux-i386 V0 with full debug...\n"
492 cd aros-linux-i386-v0-dbg
494 make $makeopts contrib
496 echo -e "\nIf everything went well AROS will be available"
497 echo -e "in the directory aros-linux-i386-v0-dbg/bin/<target>/AROS"
499 12 ) echo -e "\nBuilding linux-i386 V0 without debug...\n"
500 cd aros-linux-i386-v0
502 make $makeopts contrib
504 echo -e "\nIf everything went well AROS will be available"
505 echo -e "in the directory aros-linux-i386-v0/bin/<target>/AROS"
507 15 ) echo -e "\nBuilding pc-i386 V0...\n"
510 make $makeopts contrib
512 make $makeopts distfiles
513 echo -e "\nIf everything went well AROS will be available"
514 echo -e "in the directory aros-pc-i386-v0/distfiles"