From ebfaa37304d2c644d1afc0219b1dd5bd66171c2e Mon Sep 17 00:00:00 2001 From: Stefan Dresselhaus Date: Tue, 21 Jan 2014 02:15:43 +0100 Subject: [PATCH] changed deps again.. --- deps/getDeps.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/deps/getDeps.sh b/deps/getDeps.sh index a0fb5d5..084f122 100755 --- a/deps/getDeps.sh +++ b/deps/getDeps.sh @@ -7,16 +7,22 @@ install=${?} if [[ $install -eq 0 ]] then + sudo apt-get install gdebi 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 + sudo gdebi 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 + sudo gdebi libsdl2-dev_2.0.1+dfsg1-1ubuntu1_amd64.deb + fi + if [ ! -f "libsdl2-dbg_2.0.1+dfsg1-1ubuntu1_amd64.deb" ] + then + wget http://de.archive.ubuntu.com/ubuntu/pool/universe/libs/libsdl2/libsdl2-dbg_2.0.1+dfsg1-1ubuntu1_amd64.deb + sudo gdebi libsdl2-dbg_2.0.1+dfsg1-1ubuntu1_amd64.deb fi fi