From 5b805ed5869d1f2b0bc3a9c18d565b4780a2d163 Mon Sep 17 00:00:00 2001 From: don bright Date: Tue, 3 Jul 2012 22:31:22 -0700 Subject: wget or curl required. if curl isnt there, wget will fetch + build it diff --git a/scripts/linux-build-dependencies.sh b/scripts/linux-build-dependencies.sh index 286399b..aef58b9 100755 --- a/scripts/linux-build-dependencies.sh +++ b/scripts/linux-build-dependencies.sh @@ -7,7 +7,7 @@ # Usage: linux-build-dependencies.sh # # Prerequisites: -# - wget +# - wget or curl # - Qt4 # - cmake 2.8 ( force build_cmake at bottom if yours is too old ) # -- cgit v0.10.1 From def43ad3169d4dfbbcc42de41ab405af35f7ec23 Mon Sep 17 00:00:00 2001 From: don bright Date: Tue, 3 Jul 2012 22:53:37 -0700 Subject: improve script reporting and functionality (export) diff --git a/scripts/setenv-linbuild.sh b/scripts/setenv-linbuild.sh index a61b55a..d9aeea8 100644 --- a/scripts/setenv-linbuild.sh +++ b/scripts/setenv-linbuild.sh @@ -2,12 +2,14 @@ BASEDIR=$HOME/openscad_deps DEPLOYDIR=$BASEDIR -PATH=$BASEDIR/bin:$PATH -LD_LIBRARY_PATH=$DEPLOYDIR/lib:$DEPLOYDIR/lib64 -LD_RUN_PATH=$DEPLOYDIR/lib:$DEPLOYDIR/lib64 -OPENSCAD_LIBRARIES=$DEPLOYDIR -GLEWDIR=$DEPLOYDIR +export PATH=$BASEDIR/bin:$PATH +export LD_LIBRARY_PATH=$DEPLOYDIR/lib:$DEPLOYDIR/lib64 +export LD_RUN_PATH=$DEPLOYDIR/lib:$DEPLOYDIR/lib64 +export OPENSCAD_LIBRARIES=$DEPLOYDIR +export GLEWDIR=$DEPLOYDIR +echo BASEDIR: $BASEDIR +echo DEPLOYDIR: $DEPLOYDIR echo PATH modified echo LD_LIBRARY_PATH modified echo LD_RUN_PATH modified -- cgit v0.10.1