mirror of
https://github.com/Team-Resurgent/xbmc4xbox-redux.git
synced 2026-08-15 20:18:49 -07:00
25 lines
447 B
Bash
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/\*
|