From: daid303 Date: Mon, 24 Dec 2012 09:17:52 +0000 (+0100) Subject: Add power python module to package script. X-Git-Tag: 13.03~139^2~3 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5739b1147173c404bed97e4acd766d1a58ce79c4;p=cura.git Add power python module to package script. --- diff --git a/package.sh b/package.sh index 074377c1..748829e3 100755 --- a/package.sh +++ b/package.sh @@ -150,6 +150,9 @@ if [ $BUILD_TARGET = "win32" ]; then downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip #Get pypy downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-win32.zip + #Get the power module for python + rm -rf Power + git clone https://github.com/GreatFruitOmsk/Power else downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2 fi @@ -183,10 +186,13 @@ if [ $BUILD_TARGET = "win32" ]; then mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib mv PURELIB/comtypes ${TARGET_DIR}/python/Lib mv PLATLIB/numpy ${TARGET_DIR}/python/Lib + mv Power/power ${TARGET_DIR}/python/Lib mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/ mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/ mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/ + + rm -rf Power/ rm -rf \$_OUTDIR rm -rf PURELIB rm -rf PLATLIB