diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-12-05 04:18:12 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-12-05 04:18:12 (GMT) |
commit | 03ef1a27eab727c122512b904cf93bb5fbd5f71d (patch) | |
tree | bf09526bc486219671b19911a2d17d1f3479d297 /scripts/freebsd-build-dependencies.sh | |
parent | fcaa4811e20121c15d4d75ae1cc31ef93d44cf81 (diff) |
unify build scripts. introduce 'version checker' script. simplify instructions
Diffstat (limited to 'scripts/freebsd-build-dependencies.sh')
-rwxr-xr-x | scripts/freebsd-build-dependencies.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/freebsd-build-dependencies.sh b/scripts/freebsd-build-dependencies.sh deleted file mode 100755 index 4ea61de..0000000 --- a/scripts/freebsd-build-dependencies.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/local/bin/bash -e - -echo "Tested on FreeBSD 9. Please see README.md for info on older systems." - -if [ "`pkg_info | grep -i cgal `" ]; then - echo Stopping. Please remove any CGAL packages you have installed and restart - exit -fi - -if [ "`pkg_info | grep -i opencsg`" ]; then - echo Stopping. Please remove any OpenCSG packages you have installed and restart - exit -fi - -OPENSCADDIR=$PWD -if [ ! -f $OPENSCADDIR/openscad.pro ]; then - echo "Must be run from the OpenSCAD source root directory" - exit 0 -fi - -. ./scripts/setenv-freebsdbuild.sh - -pkg_add -r bison boost-libs cmake git bash eigen2 flex gmake gmp mpfr -pkg_add -r xorg libGLU libXmu libXi xorg-vfbserver glew -pkg_add -r qt4-corelib qt4-gui qt4-moc qt4-opengl qt4-qmake qt4-rcc qt4-uic - -BASEDIR=/usr/local ./scripts/linux-build-dependencies.sh cgal-use-sys-libs -BASEDIR=/usr/local ./scripts/linux-build-dependencies.sh opencsg |