X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=package.sh;h=b70218544370e5d011599abef96bea2af31f068b;hb=05abbdad2dbbe51f89c6cb527af4f17c7b0963e2;hp=acdbaffcda2a08dec53fa306586ba8b6759a9770;hpb=86074212c8391cb696f35960859d022284d3631a;p=cura.git diff --git a/package.sh b/package.sh index acdbaffc..b7021854 100755 --- a/package.sh +++ b/package.sh @@ -17,12 +17,17 @@ BUILD_TARGET=${1:-all} ##Do we need to create the final archive ARCHIVE_FOR_DISTRIBUTION=1 ##Which version name are we appending to the final archive -BUILD_NAME=13.06.5 +export BUILD_NAME=13.11 TARGET_DIR=Cura-${BUILD_NAME}-${BUILD_TARGET} ##Which versions of external programs to use WIN_PORTABLE_PY_VERSION=2.7.2.1 +##Which CuraEngine to use +if [ -z ${CURA_ENGINE_REPO} ] ; then + CURA_ENGINE_REPO="https://github.com/Ultimaker/CuraEngine" +fi + ############################# # Support functions ############################# @@ -106,7 +111,7 @@ if [ "$BUILD_TARGET" = "darwin" ]; then #Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later) echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version rm -rf CuraEngine - git clone https://github.com/Ultimaker/CuraEngine + git clone ${CURA_ENGINE_REPO} make -C CuraEngine cp CuraEngine/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine @@ -138,8 +143,15 @@ fi ############################# if [ "$BUILD_TARGET" = "debian" ]; then - git clone https://github.com/GreatFruitOmsk/Power - git clone https://github.com/Ultimaker/CuraEngine + if [ ! -d "Power" ]; then + git clone https://github.com/GreatFruitOmsk/Power + else + cd Power + git pull + cd .. + fi + rm -rf CuraEngine + git clone ${CURA_ENGINE_REPO} make -C CuraEngine rm -rf scripts/linux/debian/usr/share/cura mkdir -p scripts/linux/debian/usr/share/cura @@ -179,7 +191,7 @@ if [ $BUILD_TARGET = "win32" ]; then rm -rf Power git clone https://github.com/GreatFruitOmsk/Power rm -rf CuraEngine - git clone https://github.com/Ultimaker/CuraEngine + git clone ${CURA_ENGINE_REPO} fi #############################