forked from synfig/synfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-setup-windows-msys2.sh
58 lines (48 loc) · 1.5 KB
/
1-setup-windows-msys2.sh
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
50
51
52
53
54
55
56
#!/usr/bin/env bash
# -------------------------------------------------------------------------------
# This script installs all dependencies required for building Synfig Studio with MSYS2
# Execute it once on an MSYS shell, i.e.
# - use the "MSYS2 MSYS" shortcut in the start menu or
# - run "msys2.exe" in MSYS2's installation folder
#
# MSYS2 and installed libraries can be updated later by executing
# pacman -Syu
# in an MSYS shell
# -------------------------------------------------------------------------------
SCRIPT_DIR=`dirname "$0"`
# set environment variables
source ${SCRIPT_DIR}/autobuild/msys2/set_env.sh
echo "Selected ARCH: ${ARCH}"
#echo "Sync pacman package databases"
#pacman -Sy
# dlfcn is still required to MLT build, so don't remove it
echo "Installing development tools"
# install basic development system, compiler toolchain and build tools
pacman -S --needed --noconfirm --color=auto \
autoconf \
automake-wrapper \
intltool \
make \
patch \
tar \
$ARCH-gcc \
$ARCH-ccache \
$ARCH-libtool \
$ARCH-make \
$ARCH-pkg-config \
$ARCH-dlfcn \
$ARCH-SDL2 \
$ARCH-boost \
$ARCH-cairomm \
$ARCH-ffmpeg \
$ARCH-fftw \
$ARCH-glibmm \
$ARCH-libxml++2.6 \
$ARCH-pango \
$ARCH-gtkmm3
# build mlt
bash ${SCRIPT_DIR}/autobuild/msys2/build_mlt.sh
# Apply patch to libintl.h. This required because libintl.h redefines sprintf
# and std::sprintf is stop working. But std::sprintf is used by Boost::Odeint library
# so we need it.
patch $PREFIX/include/libintl.h < ${SCRIPT_DIR}/autobuild/msys2/libintl.h.patch