2017-05-10 17:16:14 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
function main {
|
|
|
|
pacman --noconfirm -S --needed \
|
|
|
|
git \
|
2018-09-14 23:17:16 +02:00
|
|
|
mingw-w64-x86_64-python3 \
|
|
|
|
mingw-w64-x86_64-python3-gobject \
|
|
|
|
mingw-w64-x86_64-python3-pip \
|
|
|
|
mingw-w64-x86_64-toolchain \
|
2018-11-01 08:21:52 +01:00
|
|
|
mingw-w64-x86_64-adwaita-icon-theme \
|
2018-09-14 23:17:16 +02:00
|
|
|
mingw-w64-x86_64-gtk3 \
|
2018-11-01 08:21:52 +01:00
|
|
|
mingw-w64-x86_64-python3-setuptools-scm \
|
|
|
|
mingw-w64-x86_64-python3-cryptography \
|
|
|
|
mingw-w64-x86_64-python3-certifi \
|
2018-09-14 23:17:16 +02:00
|
|
|
mingw-w64-x86_64-python3-pyopenssl \
|
2018-11-01 08:21:52 +01:00
|
|
|
mingw-w64-x86_64-python3-pillow \
|
|
|
|
mingw-w64-x86_64-python3-six
|
2017-05-10 17:16:14 +02:00
|
|
|
|
|
|
|
PIP_REQUIREMENTS="\
|
|
|
|
git+https://dev.gajim.org/gajim/python-nbxmpp.git
|
2018-09-14 23:17:16 +02:00
|
|
|
git+https://dev.gajim.org/lovetox/pybonjour-python3.git
|
2018-11-01 08:21:52 +01:00
|
|
|
git+https://github.com/enthought/pywin32-ctypes.git
|
2018-09-14 23:17:16 +02:00
|
|
|
python-axolotl
|
2017-05-10 17:16:14 +02:00
|
|
|
python-gnupg
|
|
|
|
keyring
|
2018-08-23 19:48:36 +02:00
|
|
|
cssutils
|
2018-11-01 08:21:52 +01:00
|
|
|
qrcode
|
|
|
|
precis-i18n
|
2017-05-10 17:16:14 +02:00
|
|
|
"
|
2018-11-01 08:28:20 +01:00
|
|
|
|
|
|
|
pip3 install $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "])
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
main;
|