-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinstall-dependencies-mingw32_nt
executable file
·50 lines (39 loc) · 1.52 KB
/
install-dependencies-mingw32_nt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /bin/sh
echo "Install dependencies at MSYS2/MINGW32..."
echo "0) Source Version Control"
pacman -S --noconfirm subversion
pacman -S --noconfirm git
echo "1) gnustep-make"
pacman -S --noconfirm tar
pacman -S --noconfirm unzip
pacman -S --noconfirm make
pacman -S --noconfirm autogen automake autoconf autoconf2.13 libtool mingw-w64-i686-libtool
pacman -S --noconfirm mingw-w64-i686-toolchain
pacman -S --noconfirm mingw-w64-i686-pkg-config
echo "2) gnustep-base"
#pacman -S --noconfirm mingw-w64-i686-libffi
pacman -S --noconfirm mingw-w64-i686-libxml2
pacman -S --noconfirm mingw-w64-i686-gnutls
pacman -S --noconfirm mingw-w64-i686-libxslt
echo "3) gnustep-gui"
pacman -S --noconfirm mingw-w64-i686-libjpeg-turbo
pacman -S --noconfirm mingw-w64-i686-libtiff
pacman -S --noconfirm mingw-w64-i686-giflib
pacman -S --noconfirm mingw-w64-i686-icu
pacman -S --noconfirm mingw-w64-i686-libsndfile
pacman -S --noconfirm mingw-w64-i686-aspell
pacman -S --noconfirm mingw-w64-i686-lcms mingw-w64-i686-lcms2
pacman -S --noconfirm mingw-w64-i686-sqlite3
pacman -S --noconfirm mingw-w64-x86_64-imagemagick
pacman -S --noconfirm asciidoc
pacman -S --noconfirm mingw-w64-i686-windows-default-manifest
echo "4) gnustep-back"
pacman -S --noconfirm mingw-w64-i686-cairo
echo "5) clang"
pacman -S --noconfirm mingw-w64-x86_64-clang
echo "6) ninja"
pacman -S --noconfirm ninja
echo "7) ghostscript for printing support"
pacman -S --noconfirm mingw-w64-x86_64-ghostscript
echo "Done."
echo "Don't forget to run /mingw32_shell.bat to create a session to build in."