Update win/dev_env.sh
This commit is contained in:
parent
77c9b3a98d
commit
199ce628f1
|
@ -5,38 +5,25 @@ set -e
|
||||||
function main {
|
function main {
|
||||||
pacman --noconfirm -S --needed \
|
pacman --noconfirm -S --needed \
|
||||||
git \
|
git \
|
||||||
mingw-w64-i686-toolchain \
|
mingw-w64-x86_64-python3 \
|
||||||
mingw-w64-i686-gdk-pixbuf2 \
|
mingw-w64-x86_64-python3-gobject \
|
||||||
mingw-w64-i686-gtk3 \
|
mingw-w64-x86_64-python3-pip \
|
||||||
mingw-w64-i686-gstreamer \
|
mingw-w64-x86_64-toolchain \
|
||||||
intltool \
|
mingw-w64-x86_64-gtk3 \
|
||||||
mingw-w64-i686-sqlite3 \
|
mingw-w64-x86_64-python3-pyopenssl \
|
||||||
mingw-w64-i686-python3 \
|
mingw-w64-x86_64-python3-pillow
|
||||||
mingw-w64-i686-python3-gobject \
|
|
||||||
mingw-w64-i686-python3-pip \
|
|
||||||
mingw-w64-i686-sqlite3
|
|
||||||
|
|
||||||
pip3 install setuptools_scm
|
|
||||||
|
|
||||||
PIP_REQUIREMENTS="\
|
PIP_REQUIREMENTS="\
|
||||||
certifi
|
certifi
|
||||||
git+https://dev.gajim.org/gajim/python-nbxmpp.git
|
git+https://dev.gajim.org/gajim/python-nbxmpp.git
|
||||||
git+https://dev.gajim.org/lovetox/pybonjour-python3.git
|
git+https://dev.gajim.org/lovetox/pybonjour-python3.git
|
||||||
protobuf
|
python-axolotl
|
||||||
cryptography
|
|
||||||
pyopenssl
|
|
||||||
python-gnupg
|
python-gnupg
|
||||||
docutils
|
|
||||||
qrcode
|
|
||||||
keyring
|
keyring
|
||||||
pillow==4.3.0
|
|
||||||
cssutils
|
cssutils
|
||||||
"
|
"
|
||||||
|
|
||||||
pip3 install --no-binary ":all:" \
|
pip3 install $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "])
|
||||||
--force-reinstall $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "])
|
|
||||||
|
|
||||||
pip3 install python-axolotl
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue