forked from mean00/avidemux2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootStrap.bash
348 lines (338 loc) · 10.6 KB
/
bootStrap.bash
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#!/bin/bash
# Bootstrapper to semi-automatically build avidemux deb/rpm from source
# (c) Mean 2009/2016
#
# By default we use qt5 now
#
packages_ext=""
rebuild=0
do_core=1
do_cli=1
do_qt=1
do_plugins=1
do_asan=0
debug=0
default_install_prefix="/usr"
qt_ext=Qt5
QT_FLAVOR="-DENABLE_QT5=True"
COMPILER=""
export QT_SELECT=5 # default for ubuntu, harmless for others
export O_PARAL="-j $(nproc)"
install_prefix="$default_install_prefix"
# -lc is required to build libADM_ae_lav* audio encoder plugins on 32 bit ubuntu
if [[ $(uname -m) = i?86 ]] ; then
export need_ae_lav_build_quirk=1
fi
external_libass=0
external_liba52=0
external_libmad=0
external_libmp4v2=0
fail()
{
echo "** Failed at $1**"
exit 1
}
Process()
{
export BUILDDIR=$1
export SOURCEDIR=$2
export INSTALL_PREFIX="-DCMAKE_INSTALL_PREFIX=$install_prefix"
export EXTRA=$3
export DEBUG=""
export ASAN=""
export BUILD_QUIRKS=""
BUILDER="Unix Makefiles"
if [ "x$debug" = "x1" ] ; then
DEBUG="-DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug "
BUILDDIR="${BUILDDIR}_debug"
BUILDER="CodeBlocks - Unix Makefiles"
fi
if [ "x$do_asan" = "x1" ] ; then
BUILDDIR="${BUILDDIR}_asan"
ASAN="-DASAN=True"
fi
FAKEROOT=" -DFAKEROOT=$FAKEROOT_DIR "
echo "Building $BUILDDIR from $SOURCEDIR with EXTRA=<$EXTRA>, DEBUG=<$DEBUG>"
if [ "x$rebuild" != "x1" ] ; then
rm -Rf ./$BUILDDIR
fi
if [ "x$need_ae_lav_build_quirk" = "x1" ] ; then
BUILD_QUIRKS="-DAE_LAVCODEC_BUILD_QUIRK=true"
fi
if [ ! -e "$BUILDDIR" ] ; then
mkdir $BUILDDIR || fail mkdir
fi
cd $BUILDDIR
cmake $COMPILER $PKG $FAKEROOT $QT_FLAVOR -DCMAKE_EDIT_COMMAND=vim $INSTALL_PREFIX $EXTRA $BUILD_QUIRKS $ASAN $DEBUG -G "$BUILDER" $SOURCEDIR || fail cmakeZ
make $PARAL >& /tmp/log$BUILDDIR || fail "make, result in /tmp/log$BUILDDIR"
if [ "x$PKG" != "x" ] ; then
$FAKEROOT_COMMAND make package DESTDIR=$FAKEROOT_DIR/tmp || fail package
fi
# we need the make install so that other packcges can be built against this one
make install DESTDIR=$FAKEROOT_DIR
}
printModule()
{
value=$1
name=$2
if [ "x$value" = "x1" ]; then echo " $name will be built"
else echo " $name will be skipped"
fi
}
config()
{
echo "Build configuration :"
echo "******************* :"
echo "Build type :"
if [ "x$debug" = "x1" ] ; then echo "Debug build"
else echo "Release build"
fi
printModule $do_core Core
printModule $do_qt ${qt_ext}
printModule $do_cli Cli
printModule $do_plugins Plugins
}
usage()
{
echo "Bootstrap avidemux 2.6:"
echo "***********************"
echo " --help : Print usage"
echo " --prefix=DIR : Install to directory DIR (default: $default_install_prefix)"
echo " --rpm : Create rpm packages"
echo " --deb : Create deb packages"
echo " --tgz : Create tgz packages"
echo " --debug : Switch debugging on"
echo " --rebuild : Preserve existing build directories"
echo " --with-core : Build core (default)"
echo " --without-core : Don't build core"
echo " --with-cli : Build cli (default)"
echo " --without-cli : Don't build cli"
echo " --with-qt : Build Qt dependent components (default)"
echo " --without-qt : Don't build Qt dependent components"
echo " --with-plugins : Build plugins (default)"
echo " --without-plugins : Don't build plugins"
echo " --enable-qt4 : Try to use Qt4 instead of Qt5"
echo " --enable-asan : Enable Clang/llvm address sanitizer"
echo " --with-clang : Use clang/clang++ as compiler"
echo " --with-system-libass : Use system libass instead of the bundled one"
echo " --with-system-liba52 : Use system liba52 (a52dec) instead of the bundled one"
echo " --with-system-libmad : Use system libmad instead of the bundled one"
echo " --with-system-libmp4v2: Use system libmp4v2 instead of the bundled one"
echo "The end result will be in the install folder. You can then copy it to / or whatever"
config
}
option_value()
{
echo $(echo $* | cut -d '=' -f 2-)
}
option_name()
{
echo $(echo $* | cut -d '=' -f 1 | cut -b 3-)
}
dir_check()
{
op_name="$1"
dir_path="$2"
if [ "x$dir_path" != "x" ] ; then
if [[ "$dir_path" != /* ]] ; then
>&2 echo "Expected an absolute path for --$op_name=$dir_path, aborting."
exit 1
fi
else
>&2 echo "Empty path provided for --$op_name, aborting."
exit 1
fi
case "$dir_path" in
*/)
echo $(expr "x$dir_path" : 'x\(.*[^/]\)') # strip trailing slashes
;;
*)
echo "$dir_path"
;;
esac
}
#
export FAKEROOT_COMMAND="fakeroot"
CMAKE_VERSION=`cmake --version | head -n 1 | sed "s/^.* \([0-9]*\.[0-9]*\.[0-9]*\).*/\1/g"`
echo "CMAKE Version : $CMAKE_VERSION"
case "$CMAKE_VERSION" in
2.8.[7-9]|2.8.[1-9][0-9]|3*)
echo "Cmake version >=2.8.7 doesnt need fakeroot"
export FAKEROOT_COMMAND=""
;;
esac
# Could probably do it with getopts...
while [ $# != 0 ] ;do
config_option="$1"
case "$config_option" in
-h|--help)
usage
exit 1
;;
--prefix=*)
install_prefix=$(dir_check $(option_name "$config_option") $(option_value "$config_option")) || exit 1
;;
--debug)
debug=1
;;
--rebuild)
rebuild=1
;;
--tgz)
packages_ext=tar.gz
PKG="$PKG -DAVIDEMUX_PACKAGER=tgz"
;;
--deb)
packages_ext=deb
PKG="$PKG -DAVIDEMUX_PACKAGER=deb"
rm -f debs/*
;;
--rpm)
packages_ext=rpm
PKG="$PKG -DAVIDEMUX_PACKAGER=rpm"
;;
--with-clang)
export COMPILER="-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++"
;;
--without-qt)
do_qt=0
;;
--without-cli)
do_cli=0
;;
--without-plugins)
do_plugins=0
;;
--without-core)
do_core=0
;;
--enable-qt4)
QT_FLAVOR=""
export QT_SELECT=4
qt_ext=Qt4
;;
--enable-asan)
do_asan=1
;;
--with-qt)
do_qt=1
;;
--with-cli)
do_cli=1
;;
--with-plugins)
do_plugins=1
;;
--with-core)
do_core=1
;;
--with-system-libass)
external_libass=1
;;
--with-system-liba52)
external_liba52=1
;;
--with-system-libmad)
external_libmad=1
;;
--with-system-libmp4v2)
external_libmp4v2=1
;;
*)
echo "unknown parameter $config_option"
usage
exit 1
;;
esac
shift
done
config
echo "**BootStrapping avidemux **"
export TOP=$PWD
export POSTFIX=""
export FAKEROOT_DIR=$PWD/install
export PARAL="$O_PARAL"
if [ "x$external_libass" = "x1" ]; then
export EXTRA_CMAKE_DEFS="-DUSE_EXTERNAL_LIBASS=true $EXTRA_CMAKE_DEFS"
fi
if [ "x$external_liba52" = "x1" ]; then
export EXTRA_CMAKE_DEFS="-DUSE_EXTERNAL_LIBA52=true $EXTRA_CMAKE_DEFS"
fi
if [ "x$external_libmad" = "x1" ]; then
export EXTRA_CMAKE_DEFS="-DUSE_EXTERNAL_LIBMAD=true $EXTRA_CMAKE_DEFS"
fi
if [ "x$external_libmp4v2" = "x1" ]; then
export EXTRA_CMAKE_DEFS="-DUSE_EXTERNAL_MP4V2=true $EXTRA_CMAKE_DEFS"
fi
echo "Top dir : $TOP"
echo "Fake installation directory=$FAKEROOT_DIR"
if [ "x$debug" = "x1" ] ; then echo
POSTFIX="_debug"
fi
if [ "x$packages_ext" = "x" ]; then
echo ""
else
rm -Rf $FAKEROOT_DIR
mkdir -p $FAKEROOT_DIR
echo "Cleaning packages"
find . -name "*.$packages_ext" | grep -vi cpa | xargs rm -f
fi
if [ "x$do_core" = "x1" ] ; then
echo "** CORE **"
cd $TOP
Process buildCore ../avidemux_core
echo " Installing core"
cd $TOP/buildCore${POSTFIX}
fi
if [ "x$do_qt" = "x1" ] ; then
echo "** $qt_ext **"
cd $TOP
Process build${qt_ext} ../avidemux/qt4
echo " Installing ${qt_ext}"
cd $TOP/build${qt_ext}${POSTFIX}
fi
if [ "x$do_cli" = "x1" ] ; then
echo "** CLI **"
cd $TOP
Process buildCli ../avidemux/cli
echo " Installing cli"
cd $TOP/buildCli${POSTFIX}
fi
if [ "x$do_plugins" = "x1" ] ; then
echo "** Plugins **"
cd $TOP
Process buildPluginsCommon ../avidemux_plugins "-DPLUGIN_UI=COMMON $EXTRA_CMAKE_DEFS"
fi
if [ "x$do_plugins" = "x1" -a "x$do_qt" = "x1" ] ; then
echo "** Plugins ${qt_ext} **"
cd $TOP
Process buildPlugins${qt_ext} ../avidemux_plugins "-DPLUGIN_UI=QT4 $EXTRA_CMAKE_DEFS"
fi
if [ "x$do_plugins" = "x1" -a "x$do_cli" = "x1" ] ; then
echo "** Plugins CLI **"
cd $TOP
Process buildPluginsCLI ../avidemux_plugins "-DPLUGIN_UI=CLI $EXTRA_CMAKE_DEFS"
fi
if [ "x$do_plugins" = "x1" ] ; then
echo "** Plugins Settings **"
cd $TOP
Process buildPluginsSettings ../avidemux_plugins "-DPLUGIN_UI=SETTINGS $EXTRA_CMAKE_DEFS"
fi
echo "** Preparing debs **"
cd $TOP
if [ "x$packages_ext" = "x" ]; then
echo "No packaging"
else
echo "Preparing packages"
rm -Rf debs
mkdir debs
find . -name "*.$packages_ext" | grep -vi cpa | xargs cp -t debs
echo "** debs directory ready **"
ls -l debs
fi
echo "** ALL DONE **"
if [ "x$packages_ext" = "x" ]; then
echo "** Copy the $FAKEROOT_DIR folder to your favorite location, i.e. sudo cp -R install/usr/* /usr/ **"
else
echo "** The installable packages are in the debs folder **"
fi