blob: b0feab719704d1ea489b51944b5462fa00a22723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
source ./common
set -e
function unpack() {
if [ ! -d unpacked/$1 ]; then
echo Unpacking $1.$2
tar xf download/$1.$2 -C unpacked
fi
}
mkdir -p unpacked
unpack binutils-$binutils_ver tar.xz
unpack newlib-$newlib_ver tar.gz
unpack gcc-$gcc_ver tar.xz
unpack mpfr-$mpfr_ver tar.xz
unpack gmp-$gmp_ver tar.xz
unpack mpc-$mpc_ver tar.gz
unpack isl-$isl_ver tar.bz2
unpack cloog-$cloog_ver tar.gz
echo Done Unpacking
|