summaryrefslogtreecommitdiff
path: root/scripts/ubuntu-build-dependencies.sh
diff options
context:
space:
mode:
authorMarius Kintel <marius@kintel.net>2012-07-13 19:29:37 (GMT)
committerMarius Kintel <marius@kintel.net>2012-07-13 19:29:37 (GMT)
commitd88429d7e438822a33aafe01d1451f51b04ed068 (patch)
tree4825fdd8ac76c80ed4a1fb2832dd8515a30c9f70 /scripts/ubuntu-build-dependencies.sh
parent1395af1101ab7d5b521bd152f1c883df72250add (diff)
parenta7a8679461e33b3ff99336dc71a060ef1a76cf09 (diff)
Merge branch 'master' of github.com:openscad/openscad
Conflicts: scripts/linux-build-dependencies.sh
Diffstat (limited to 'scripts/ubuntu-build-dependencies.sh')
-rwxr-xr-xscripts/ubuntu-build-dependencies.sh46
1 files changed, 46 insertions, 0 deletions
diff --git a/scripts/ubuntu-build-dependencies.sh b/scripts/ubuntu-build-dependencies.sh
new file mode 100755
index 0000000..0609172
--- /dev/null
+++ b/scripts/ubuntu-build-dependencies.sh
@@ -0,0 +1,46 @@
+
+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)"
+
+
+if [ "`dpkg --list | grep -i cgal`" ]; then
+ echo "Please make sure you have run apt-get purge on all cgal packages"
+ exit
+fi
+
+if [ "`dpkg --list | grep -i opencsg`" ]; then
+ echo "Please make sure you have run apt-get purge on all opencsg packages"
+ exit
+fi
+
+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
+
+echo "now copy/paste the following to install CGAL and OpenCSG from source:"
+echo "sudo BASEDIR=/usr/local ./scripts/linux-build-dependencies.sh cgal-use-sys-libs"
+echo "sudo BASEDIR=/usr/local ./scripts/linux-build-dependencies.sh opencsg"
contact: Jan Huwald // Impressum