forked from libavg/libavg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuildMacDeps.sh
executable file
·139 lines (117 loc) · 3.81 KB
/
BuildMacDeps.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash
set -e
set -x
clean()
{
rm -rf ${AVG_PATH}/bin/
rm -rf ${AVG_PATH}/lib/
sudo rm -rf ${AVG_PATH}/include/
mkdir ${AVG_PATH}/bin
mkdir ${AVG_PATH}/lib
mkdir ${AVG_PATH}/include
}
buildLib()
{
LIBNAME=$1
CONFIG_ARGS=$2
echo --------------------------------------------------------------------
cd ${LIBNAME}
./configure --prefix=${AVG_PATH} ${CONFIG_ARGS}
make clean
make -j5
make install
cd ..
}
buildglib()
{
echo --------------------------------------------------------------------
cd glib-2.29.2
LDFLAGS="-framework ApplicationServices $LDFLAGS -lresolv" ./configure --prefix=${AVG_PATH} --disable-shared --enable-static
make clean
make -j5
make install
cd ..
}
buildfontconfig()
{
echo --------------------------------------------------------------------
cd fontconfig-2.7.0
automake
LDFLAGS="-framework ApplicationServices ${LDFLAGS}" ./configure --prefix=${AVG_PATH} --disable-shared --with-add-fonts=/Library/Fonts,/System/Library/Fonts,~/Library/Fonts --with-confdir=/etc/fonts --with-cache-dir=~/.fontconfig --with-cache-dir=~/.fontconfig
make clean
make -j5
sudo make install
sudo chown -R `whoami` ~/.fontconfig
cd ..
}
buildgdkpixbuf()
{
echo --------------------------------------------------------------------
cd gdk-pixbuf-2.23.3
LDFLAGS="-framework ApplicationServices $LDFLAGS -lresolv" ./configure --prefix=${AVG_PATH} --disable-shared --with-included-loaders
make clean
make -j5
make install
cd ..
}
buildlibrsvg()
{
echo --------------------------------------------------------------------
cd librsvg-2.34.0
autoreconf --force --install
LDFLAGS=`xml2-config --libs` CPPFLAGS=`xml2-config --cflags` ./configure --prefix=${AVG_PATH} --disable-shared --disable-gtk-theme --disable-tools
make clean
make -j5
make install
cd ..
}
buildboost()
{
echo --------------------------------------------------------------------
cd boost_1_54_0
./bootstrap.sh --prefix=${AVG_PATH} --with-libraries=python,thread,date_time,system
./bjam clean
./bjam install
cd ..
rm -f ../lib/libboost_thread.dylib
rm -f ../lib/libboost_python.dylib
rm -f ../lib/libboost_date_time.dylib
rm -f ../lib/libboost_system.dylib
}
if [[ x"${AVG_PATH}" == "x" ]]
then
echo ${AVG_PATH}
echo Please set AVG_PATH and call 'source mac/avg_env.sh' before calling this script.
exit -1
fi
if [[ x"${AVG_MAC_ENV_SET}" == "x" ]]
then
echo Please call 'source mac/avg_env.sh' before calling this script.
exit -1
fi
clean
cd ../deps
buildLib libtool-2.2.6
buildLib autoconf-2.63
buildLib automake-1.11
buildLib nasm-2.10.09
buildLib libjpeg-turbo-1.3.0 "--host x86_64-apple-darwin --disable-shared NASM=${AVG_PATH}/bin/nasm"
buildLib tiff-3.8.2 --disable-shared
buildLib libpng-1.2.41 --disable-shared
buildLib pkg-config-0.20
buildLib yasm-1.2.0
buildLib libav-9.9 "--arch=x86_64 --disable-debug --enable-pthreads --enable-runtime-cpudetect"
buildLib SDL-1.2.15 "--disable-shared --disable-cdrom --disable-threads --disable-file --disable-video-x11 --without-x"
buildLib gettext-0.18.1.1 "--disable-shared --with-included-gettext --disable-csharp --disable-libasprintf"
buildglib
buildLib freetype-2.5.0.1 "--disable-shared --with-old-mac-fonts"
buildLib expat-2.0.0 --disable-shared
buildfontconfig
buildLib pixman-0.22.0 --disable-shared
buildLib cairo-1.10.2 "--disable-shared --enable-xlib=no --enable-xlib-xrender=no --enable-quartz=no --enable-quartz-font=no --enable-quartz-image=no --enable-ps=no --enable-pdf=no --enable-svg=no"
buildLib pango-1.24.4 "--disable-shared --without-x --with-included-modules=yes"
buildgdkpixbuf
buildlibrsvg
buildboost
buildLib libdc1394-2.2.1 "--disable-shared --disable-doxygen-doc --without-x"
cd ../libavg