179 lines
5.5 KiB
Bash
Executable file
179 lines
5.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script is to package the Cura package for Windows/Linux and OSx
|
|
# This script should run under Linux and OSx, as well as Windows with Cygwin.
|
|
|
|
#############################
|
|
# CONFIGURATION
|
|
#############################
|
|
|
|
|
|
##Select the build target
|
|
BUILD_TARGET=${1:-win32}
|
|
#BUILD_TARGET=linux
|
|
#BUILD_TARGET=osx64
|
|
|
|
##Do we need to create the final archive
|
|
ARCHIVE_FOR_DISTRIBUTION=1
|
|
##Which version name are we appending to the final archive
|
|
BUILD_NAME=RC2
|
|
TARGET_DIR=${BUILD_TARGET}-Cura-${BUILD_NAME}
|
|
|
|
##Which versions of external programs to use
|
|
PYPY_VERSION=c-jit-latest
|
|
WIN_PORTABLE_PY_VERSION=2.7.2.1
|
|
WIN_PYSERIAL_VERSION=2.5
|
|
|
|
#############################
|
|
# Support functions
|
|
#############################
|
|
function checkTool
|
|
{
|
|
if [ -z `which $1` ]; then
|
|
echo "The $1 command must be somewhere in your \$PATH."
|
|
echo "Fix your \$PATH or install $2"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
#############################
|
|
# Actual build script
|
|
#############################
|
|
|
|
# Change working directory to the directory the script is in
|
|
# http://stackoverflow.com/a/246128
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $SCRIPT_DIR
|
|
|
|
checkTool git "git: http://git-scm.com/"
|
|
checkTool curl "curl: http://curl.haxx.se/"
|
|
if [ $BUILD_TARGET = "win32" ]; then
|
|
#Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
|
|
checkTool 7z "7zip: http://www.7-zip.org/"
|
|
fi
|
|
#For building under MacOS we need gnutar instead of tar
|
|
if [ -z `which gnutar` ]; then
|
|
TAR=tar
|
|
else
|
|
TAR=gnutar
|
|
fi
|
|
|
|
#############################
|
|
# Download all needed files.
|
|
#############################
|
|
|
|
if [ $BUILD_TARGET = "win32" ]; then
|
|
#Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
|
|
if [ ! -f "PortablePython_${WIN_PORTABLE_PY_VERSION}.exe" ]; then
|
|
curl -L -O http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
|
|
fi
|
|
if [ ! -f pyserial-${WIN_PYSERIAL_VERSION}.exe ]; then
|
|
curl -L -O http://sourceforge.net/projects/pyserial/files/pyserial/${WIN_PYSERIAL_VERSION}/pyserial-${WIN_PYSERIAL_VERSION}.win32.exe/download
|
|
mv download pyserial-${WIN_PYSERIAL_VERSION}.exe
|
|
fi
|
|
if [ ! -f PyOpenGL-3.0.1.win32.exe ]; then
|
|
curl -L -O http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
|
|
fi
|
|
#Get pypy
|
|
if [ ! -f "pypy-${PYPY_VERSION}-win32.zip" ]; then
|
|
# curl -L -O https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-win32.zip
|
|
curl -L -O http://buildbot.pypy.org/nightly/trunk/pypy-${PYPY_VERSION}-win32.zip
|
|
fi
|
|
else
|
|
if [ ! -f "pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2" ]; then
|
|
# curl -L -O https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
|
|
curl -L -O http://buildbot.pypy.org/nightly/trunk/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
|
|
fi
|
|
fi
|
|
|
|
#Get our own version of Printrun
|
|
if [ ! -d "Printrun" ]; then
|
|
git clone git://github.com/daid/Printrun.git
|
|
else
|
|
echo "Updating Printrun"
|
|
cd Printrun
|
|
git pull
|
|
cd ..
|
|
fi
|
|
|
|
#############################
|
|
# Build the packages
|
|
#############################
|
|
rm -rf ${TARGET_DIR}
|
|
mkdir -p ${TARGET_DIR}
|
|
|
|
if [ $BUILD_TARGET = "win32" ]; then
|
|
#For windows extract portable python to include it.
|
|
7z x PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
|
|
7z x PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
|
|
7z x pyserial-${WIN_PYSERIAL_VERSION}.exe PURELIB
|
|
7z x PyOpenGL-3.0.1.win32.exe PURELIB
|
|
|
|
mkdir -p ${TARGET_DIR}/python
|
|
mv \$_OUTDIR/App/* ${TARGET_DIR}/python
|
|
mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
|
|
mv PURELIB/serial ${TARGET_DIR}/python/Lib
|
|
mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
|
|
rm -rf \$_OUTDIR
|
|
rm -rf PURELIB
|
|
|
|
#Clean up portable python a bit, to keep the package size down.
|
|
rm -rf ${TARGET_DIR}/python/PyScripter.*
|
|
rm -rf ${TARGET_DIR}/python/Doc
|
|
rm -rf ${TARGET_DIR}/python/locale
|
|
rm -rf ${TARGET_DIR}/python/tcl
|
|
rm -rf ${TARGET_DIR}/python/Lib/test
|
|
rm -rf ${TARGET_DIR}/python/Lib/distutils
|
|
rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
|
|
rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
|
|
#Remove the gle files because they require MSVCR71.dll, which is not included. We also don't need gle, so it's safe to remove it.
|
|
rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
|
|
fi
|
|
|
|
#Extract pypy
|
|
if [ $BUILD_TARGET = "win32" ]; then
|
|
7z x pypy-${PYPY_VERSION}-win32.zip -o${TARGET_DIR}
|
|
else
|
|
cd ${TARGET_DIR}; $TAR -xjf ../pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2; cd ..
|
|
fi
|
|
mv ${TARGET_DIR}/pypy-*-${BUILD_TARGET} ${TARGET_DIR}/pypy
|
|
#Cleanup pypy
|
|
rm -rf ${TARGET_DIR}/pypy/lib-python/2.7/test
|
|
|
|
#add Cura
|
|
cp -a Cura ${TARGET_DIR}/Cura
|
|
#Add cura version file
|
|
echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
|
|
|
|
#add printrun
|
|
cp -a Printrun ${TARGET_DIR}/Printrun
|
|
rm -rf ${TARGET_DIR}/Printrun/.git*
|
|
|
|
#add script files
|
|
if [ $BUILD_TARGET = "win32" ]; then
|
|
cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
|
|
else
|
|
cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
|
|
fi
|
|
|
|
#package the result
|
|
if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
|
|
if [ $BUILD_TARGET = "win32" ]; then
|
|
rm ${TARGET_DIR}.zip
|
|
cd ${TARGET_DIR}
|
|
7z a ../${TARGET_DIR}.zip *
|
|
cd ..
|
|
|
|
if [ ! -z `which wine` ]; then
|
|
#if we have wine, try to run our nsis script.
|
|
ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
|
|
wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi
|
|
fi
|
|
else
|
|
echo "Archiving to ${TARGET_DIR}.tar.gz"
|
|
$TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
|
|
fi
|
|
else
|
|
echo "Installed into ${TARGET_DIR}"
|
|
fi
|
|
|