Update Simplified Chinese Strings (#1610)
[gpodder.git] / tools / win_installer / bootstrap.sh
blobd09386a8d4123e4a749bd91aa3a3b3a580bdb53a
1 #!/usr/bin/env bash
2 # Copyright 2016 Christoph Reiter
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 set -e
11 function main {
12 pacman --noconfirm -Suy
14 pacman --noconfirm -S --needed \
15 git mingw-w64-i686-gdk-pixbuf2 \
16 mingw-w64-i686-librsvg \
17 mingw-w64-i686-gtk3 \
18 intltool \
19 base-devel mingw-w64-i686-toolchain
21 pacman --noconfirm -S --needed \
22 mingw-w64-i686-python3 \
23 mingw-w64-i686-python3-gobject \
24 mingw-w64-i686-python3-cairo \
25 mingw-w64-i686-python3-pip
27 pip3 install --user podcastparser mygpoclient \
28 pywin32-ctypes \
29 html5lib webencodings six
32 main;