repo/extra/python-installer/build
2023-12-29 17:40:48 +05:30

12 lines
285 B
Bash
Executable File

#!/bin/sh -e
sitedir="$(python3 -c 'import site;print(site.getsitepackages()[0])')"
unzip -d build "installer-$2-py3-none-any.whl"
(cd build; patch -p1 < default-bytecode-levels.patch)
mkdir -p "$1/$sitedir"
cp -pR build/installer* "$1/$sitedir"
python -m compileall "$1/$sitedir"