mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-03-12 04:07:01 -04:00
16 lines
395 B
Bash
Executable file
16 lines
395 B
Bash
Executable file
#!/bin/bash
|
|
set -Cefu
|
|
|
|
: ${PKGTREE:=/usr/local/packages/PySolFC}
|
|
PIP="${PKGTREE}/env/bin/pip"
|
|
PYPROG="${PKGTREE}/env/bin/python"
|
|
VERSION="$(env PYTHONPATH=`pwd` "$PYPROG" -c 'from pysollib.settings import VERSION ; print(VERSION)')"
|
|
XZBALL="dist/PySolFC-${VERSION}.tar.xz"
|
|
reqs=(pillow pygame six)
|
|
|
|
make dist
|
|
|
|
"$PIP" install wheel
|
|
"$PIP" install "${reqs[@]}"
|
|
|
|
"$PIP" install --upgrade "$XZBALL"
|