diff options
author | Marius Kintel <marius@kintel.net> | 2013-01-05 22:57:08 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-01-05 22:57:08 (GMT) |
commit | 101510c5cb3f696ee01fc900c9269d87a09c0658 (patch) | |
tree | 0d368ccb44ccf8dc6c7752e4e4097fd590af523a /scripts/ubuntu-build-dependencies.sh | |
parent | bc7ff5aa8d73ff08bd847bc8d0f41dc26deee54e (diff) | |
parent | db9a78f028803619cb68e17c7478e3de956e61d8 (diff) |
Merge pull request #235 from openscad/mxebuild_fix
Mxebuild fix
Diffstat (limited to 'scripts/ubuntu-build-dependencies.sh')
-rwxr-xr-x | scripts/ubuntu-build-dependencies.sh | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/scripts/ubuntu-build-dependencies.sh b/scripts/ubuntu-build-dependencies.sh deleted file mode 100755 index 1754e32..0000000 --- a/scripts/ubuntu-build-dependencies.sh +++ /dev/null @@ -1,33 +0,0 @@ - -too_old() -{ - echo "System version too low. Please try 'old linux' build (see README.md)" - exit -} - -if [ "`cat /etc/issue | grep 'Debian GNU/Linux 6.0'`" ]; then - too_old -fi -if [ "`cat /etc/issue | grep 'Debian GNU/Linux 5'`" ]; then - too_old -fi -if [ "`cat /etc/issue | grep 'Ubunutu 10'`" ]; then - too_old -fi -if [ "`cat /etc/issue | grep 'Ubunutu 9'`" ]; then - too_old -fi -if [ "`cat /etc/issue | grep 'Ubunutu 8'`" ]; then - too_old -fi -if [ "`cat /etc/issue | grep 'Ubunutu 7'`" ]; then - too_old -fi - -echo "tested on Ubuntu 12. If this fails try 'old linux' build (see README.md)" - -sudo apt-get install build-essential libqt4-dev libqt4-opengl-dev \ - libxmu-dev cmake bison flex libeigen2-dev git-core libboost-all-dev \ - libXi-dev libmpfr-dev libgmp-dev libboost-dev libglew1.6-dev \ - libcgal-dev libopencsg-dev - |