Files
XBMC4Xbox/xbmc/lib/libPython/install_python_libs.sh
Rocky5 921f9fe9f8 Clean Copy
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
2024-01-08 19:01:29 +00:00

25 lines
447 B
Bash

#!/bin/sh
DEST="../../../system/python"
OUT="$DEST/python27.zlib"
cp -v "python/XBOXbuild/Release XBOX/python27.dll" "$DEST/"
cp -v "python/XBOXbuild/Release XBOX/"*.pyd "$DEST/DLLs"
rm "$OUT"
cd python/Lib/
zip "../../$OUT" \
-r . \
-i \*.py \
-x \
plat-\* \
distutils/\* \
curses/\* \
lib-tk/\* \
lib2to3/\* \
idlelib/\* \
test/\* \
unittest/\* \
multiprocessing/\* \
\*/tests/\* \
\*/test/\*