mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
12 lines
283 B
Plaintext
12 lines
283 B
Plaintext
|
#!/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"
|