reentered the code for installing libsdl2-2.0.1 as we use functions of it

This commit is contained in:
Nicole Dresselhaus 2014-01-21 01:08:17 +01:00
parent be89567d4e
commit 1490b25f1f

43
deps/getDeps.sh vendored
View File

@ -1,5 +1,27 @@
#!/bin/bash #!/bin/bash
#hack until saucy has 2.0.1 instead of 2.0.0
dialog --yesno "Install libSDL2.0.1 from ubuntu trusty?\nCurrently needed for saucy as they only serve 2.0.0 in the repos" 10 50
install=${?}
if [[ $install -eq 0 ]]
then
echo "installing libsdl2.0.1"
if [ ! -f "libsdl2-2.0-0_2.0.1+dfsg1-1ubuntu1_amd64.deb" ]
then
wget http://de.archive.ubuntu.com/ubuntu/pool/universe/libs/libsdl2/libsdl2-2.0-0_2.0.1+dfsg1-1ubuntu1_amd64.deb
sudo dpkg -i libsdl2-2.0-0_2.0.1+dfsg1-1ubuntu1_amd64.deb
fi
if [ ! -f "libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb" ]
then
wget http://de.archive.ubuntu.com/ubuntu/pool/universe/libs/libsdl2/libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb
sudo dpkg -i libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb
fi
fi
## hack end
echo "cloning repositories" echo "cloning repositories"
if [ ! -d "hsSDL2" ] if [ ! -d "hsSDL2" ]
then then
@ -19,6 +41,7 @@ do
else else
echo "building: $d ..." echo "building: $d ..."
cd "$d" cd "$d"
cabal clean
cabal configure cabal configure
cabal build cabal build
cabal haddock --hyperlink-source cabal haddock --hyperlink-source
@ -27,23 +50,3 @@ do
fi fi
done done
#hack until saucy has 2.0.1 instead of 2.0.0
#dialog --yesno "Install libSDL2.0.1 from ubuntu trusty?\nCurrently needed for saucy as they only serve 2.0.0 in the repos" 10 50
#install=${?}
#
#if [[ $install -eq 0 ]]
#then
# echo "installing libsdl2.0.1"
# if [ ! -f "libsdl2-2.0-0_2.0.1+dfsg1-1ubuntu1_amd64.deb" ]
# then
# wget http://de.archive.ubuntu.com/ubuntu/pool/universe/libs/libsdl2/libsdl2-2.0-0_2.0.1+dfsg1-1ubuntu1_amd64.deb
# sudo dpkg -i libsdl2-2.0-0_2.0.1+dfsg1-1ubuntu1_amd64.deb
# fi
# if [ ! -f "libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb" ]
# then
# wget http://de.archive.ubuntu.com/ubuntu/pool/universe/libs/libsdl2/libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb
# sudo dpkg -i libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb
# fi
#fi