diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-05-29 00:15:49 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-05-29 00:15:49 (GMT) |
commit | 26b3c3633c4cce04383d4d12e9e56f8c9cb5230a (patch) | |
tree | 78dc0ea12c95226ad224c44ee1dc66220a0cac8c /scripts | |
parent | bf5eac68809e1bb2c38f19f63589bc3a05ffcb72 (diff) |
tweak opencsg installation.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/linux-build-dependencies.sh | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/scripts/linux-build-dependencies.sh b/scripts/linux-build-dependencies.sh index 50c7949..be2c8eb 100755 --- a/scripts/linux-build-dependencies.sh +++ b/scripts/linux-build-dependencies.sh @@ -144,9 +144,10 @@ build_opencsg() tar xzf OpenCSG-$version.tar.gz cd OpenCSG-$version sed -i s/example// opencsg.pro # examples might be broken without GLUT - OPENSCAD_LIBRARIES=$DEPLOYDIR qmake-qt4 - make install - cp -av include/opencsg.h $BASEDIR/include/ # kludge + qmake-qt4 + make + install -v lib/* $DEPLOYDIR/lib + install -v include/* $DEPLOYDIR/include } build_eigen() @@ -181,14 +182,14 @@ fi echo "Using basedir:" $BASEDIR mkdir -p $SRCDIR $DEPLOYDIR -build_curl 7.26.0 -build_eigen 2.0.17 -build_gmp 5.0.5 -build_mpfr 3.1.0 -build_boost 1.47.0 +#build_curl 7.26.0 +#build_eigen 2.0.17 +#build_gmp 5.0.5 +#build_mpfr 3.1.0 +#build_boost 1.47.0 # NB! For CGAL, also update the actual download URL in the function -build_cgal 4.0 -build_glew 1.7.0 +#build_cgal 4.0 +#build_glew 1.7.0 build_opencsg 1.3.2 echo "Now do this:" |