-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinstall-dependencies-msys_nt
executable file
·47 lines (38 loc) · 1.51 KB
/
install-dependencies-msys_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
#! /bin/sh
echo "Install dependencies at MSYS2/MINGW64..."
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-x86_64-libtool
pacman -S --noconfirm mingw-w64-x86_64-toolchain
pacman -S --noconfirm mingw-w64-x86_64-pkg-config
echo "2) gnustep-base"
#pacman -S --noconfirm mingw-w64-x86_64-libffi
pacman -S --noconfirm mingw-w64-x86_64-libxml2
pacman -S --noconfirm mingw-w64-x86_64-gnutls
pacman -S --noconfirm mingw-w64-x86_64-libxslt
echo "3) gnustep-gui"
pacman -S --noconfirm mingw-w64-x86_64-libjpeg-turbo
pacman -S --noconfirm mingw-w64-x86_64-libtiff
pacman -S --noconfirm mingw-w64-x86_64-giflib
pacman -S --noconfirm mingw-w64-x86_64-icu
pacman -S --noconfirm mingw-w64-x86_64-libsndfile
pacman -S --noconfirm mingw-w64-x86_64-aspell
pacman -S --noconfirm mingw-w64-x86_64-lcms mingw-w64-x86_64-lcms2
pacman -S --noconfirm mingw-w64-x86_64-sqlite3
pacman -S --noconfirm asciidoc
pacman -S --noconfirm mingw-w64-x86_64-windows-default-manifest
echo "4) gnustep-back"
pacman -S --noconfirm mingw-w64-x86_64-cairo
echo "5) compiler"
pacman -S --noconfirm mingw-w64-x86_64-clang
pacman -S --noconfirm mingw-w64-x86_64-gcc
pacman -S --noconfirm mingw-w64-x86_64-gcc-objc
echo "6) ninja"
pacman -S --noconfirm ninja
echo "Done."
echo "Don't forget to run /mingw64_shell.bat to create a session to build in."