mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
contrib/install-pysolfc.sh: pip install pygame for sound output (#180)
This commit is contained in:
parent
a8a262a68c
commit
da5b85c064
1 changed files with 9 additions and 9 deletions
|
@ -2,15 +2,15 @@
|
|||
set -Cefu
|
||||
|
||||
: ${PKGTREE:=/usr/local/packages/PySolFC}
|
||||
PIP=("${PKGTREE}/env/bin/pip" install --no-binary :all:)
|
||||
PYPROG="$(printf '%s/env/bin/python' "$PKGTREE")"
|
||||
PIP="${PKGTREE}/env/bin/pip"
|
||||
PYPROG="${PKGTREE}/env/bin/python"
|
||||
VERSION="$(env PYTHONPATH=`pwd` "$PYPROG" -c 'from pysollib.settings import VERSION ; print(VERSION)')"
|
||||
XZBALL="$(printf 'dist/PySolFC-%s.tar.xz' "$VERSION")"
|
||||
reqs='six random2 pillow'
|
||||
XZBALL="dist/PySolFC-${VERSION}.tar.xz"
|
||||
reqs=(pillow pygame random2 six)
|
||||
|
||||
make dist
|
||||
for req in $reqs
|
||||
do
|
||||
"${PIP[@]}" "$req"
|
||||
done
|
||||
"${PIP[@]}" --upgrade "$XZBALL"
|
||||
|
||||
"$PIP" install wheel
|
||||
"$PIP" install "${reqs[@]}"
|
||||
|
||||
"$PIP" install --upgrade "$XZBALL"
|
||||
|
|
Loading…
Add table
Reference in a new issue