Merge pull request #3499 from kumpera/fix_logging
[mono.git] / scripts / get-cygwin-deps.sh
1 #!/bin/bash
2
3 #
4 # This script will download and install the dependencies needed for compiling
5 # mono on cygwin
6 #
7
8 # Check for required packages
9
10 commands="wget unzip automake autoconf libtool make bison"
11
12 failed=0
13 for i in $commands; do
14         if ! which $i > /dev/null 2>&1; then 
15                 echo "You must have the '$i' package installed."
16                 failed=1
17         fi
18 done
19
20 if [ $failed = 1 ]; then
21         exit 1
22 fi
23
24 dir=cygwin-deps
25 mkdir -p $dir
26
27 echo -n "Downloading deps... "
28 if [ ! -f $dir/gettext-runtime-0.17-1.zip ]; then
29         wget -P $dir http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime-0.17-1.zip
30 fi
31 if [ ! -f $dir/libiconv-1.13-mingw32-dev.tar.gz ]; then
32         wget -P $dir http://sourceforge.net/projects/mingw/files/MinGW/libiconv/libiconv-1.13/libiconv-1.13-mingw32-dev.tar.gz/download
33 fi
34 echo "done."
35
36 echo -n "Extracting to cygwin-deps/ ..."
37 (cd $dir && for i in *.zip; do unzip -oq $i || exit 1; done) || exit 1
38 # This is needed because windows can't use dll's without an x flag.
39 chmod a+x $dir/bin/*.dll
40 echo "done."
41
42 echo -n "Patching PC files... "
43 prefix=$PWD/$dir
44 find $dir -name "*.pc" > $dir/pc-files
45 for i in `cat $dir/pc-files`; do
46         (sed -e "s,^prefix=.*,prefix=$prefix,g" < $i > $i.tmp && mv $i.tmp $i) || exit 1
47 done
48 rm -f $dir/pc-files
49 echo "done."
50
51 # Create an environment shell file
52 rm -f $dir/env.sh
53 echo "export PKG_CONFIG_PATH=\"$PWD/$dir/lib/pkgconfig:\$PKG_CONFIG\"" >> $dir/env.sh
54 echo "export PATH=\"$PWD/$dir/bin:\$PATH\"" >> $dir/env.sh
55
56 echo "Source $dir/env.sh into your environment using:"
57 echo ". $dir/env.sh"
58 echo "Then run mono's configure."