X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=package.sh;h=3a604844ac18d6ea57cc3aa86b135646469fcfc5;hb=8250937337e4b8962a9c8082f0ae69b4214f93ca;hp=6b4d47b7a649408fe4e377563a839ea8cef2f504;hpb=1eab206530abbd64b5b18042f07c728822d246ad;p=cura.git diff --git a/package.sh b/package.sh index 6b4d47b7..3a604844 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.09 +export BUILD_NAME=13.12-test 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 @@ -145,13 +150,8 @@ if [ "$BUILD_TARGET" = "debian" ]; then git pull cd .. fi - if [ ! -d "CuraEngine" ]; then - git clone https://github.com/Ultimaker/CuraEngine - else - cd CuraEngine - 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 @@ -160,7 +160,7 @@ if [ "$BUILD_TARGET" = "debian" ]; then cp scripts/linux/cura.py scripts/linux/debian/usr/share/cura/ cp -a Power/power scripts/linux/debian/usr/share/cura/ echo $BUILD_NAME > scripts/linux/debian/usr/share/cura/Cura/version - sudo chown root:root scripts/linux/debian/usr -R + sudo chown root:root scripts/linux/debian -R sudo chmod 755 scripts/linux/debian/usr -R sudo chmod 755 scripts/linux/debian/DEBIAN -R cd scripts/linux @@ -191,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 #############################