forked from mean00/avidemux2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootStrap.bash
247 lines (239 loc) · 6.71 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
#!/bin/bash
# Bootstrapper to semi-automatically build avidemux deb/rpm from source
# (c) Mean 2009
#
packages_ext=""
do_core=1
do_cli=0
do_gtk=0
do_qt4=1
do_plugins=1
debug=0
export O_PARAL="-j 2"
fail()
{
echo "** Failed at $1**"
exit 1
}
Process()
{
export BUILDDIR=$1
export SOURCEDIR=$2
export EXTRA=$3
export DEBUG=""
BUILDER="Unix Makefiles"
if [ "x$debug" = "x1" ] ; then
DEBUG="-DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug "
BUILDDIR="${BUILDDIR}_debug"
BUILDER="CodeBlocks - Unix Makefiles"
fi
FAKEROOT=" -DFAKEROOT=$FAKEROOT_DIR "
echo "Building $BUILDDIR from $SOURCEDIR with EXTRA=<$EXTRA>, DEBUG=<$DEBUG>"
rm -Rf ./$BUILDDIR
mkdir $BUILDDIR || fail mkdir
cd $BUILDDIR
cmake $PKG $FAKEROOT -DCMAKE_EDIT_COMMAND=vim -DAVIDEMUX_SOURCE_DIR=$TOP -DCMAKE_INSTALL_PREFIX=/usr $EXTRA $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
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_gtk Gtk
printModule $do_qt4 Qt4
printModule $do_cli Cli
printModule $do_plugins Plugins
}
usage()
{
echo "Bootstrap avidemux 2.6:"
echo "***********************"
echo " --help : Print usage"
echo " --rpm : Build rpm packages"
echo " --deb : Build deb packages"
echo " --tgz : Build tgz packages"
echo " --debug : Switch debugging on"
echo " --with-core : Build core"
echo " --without-core : Dont build core"
echo " --with-cli : Build cli"
echo " --without-cli : Dont build cli"
echo " --with-gtk : Build gtk"
echo " --without-gtk : Dont build gtk"
echo " --with-core : Build core"
echo " --without-qt4 : Dont build qt4"
echo " --with-plugins : Build plugins"
echo " --without-plugins : Dont build plugins"
echo "The end result will be in the install folder. You can then copy it to / or whatever"
config
}
#
export FAKEROOT_COMMAND="fakeroot"
CMAKE_VERSION=`cmake --version | sed "s/^.*2/2/g"`
echo "CMAKE Version : $CMAKE_VERSION"
case "$CMAKE_VERSION" in
2.8.8|2.8.7|2.8.9)
echo "Cmake version >=2.8.7 doesnt need fakeroot"
export FAKEROOT_COMMAND=""
;;
esac
# Could probably do it with getopts...
while [ $# != 0 ] ;do
case "$1" in
-h|--help)
usage
exit 1
;;
--debug)
debug=1
;;
--tgz)
packages_ext=tar.gz
PKG="$PKG -DAVIDEMUX_PACKAGER=tgz"
;;
--deb)
packages_ext=deb
PKG="$PKG -DAVIDEMUX_PACKAGER=deb"
;;
--rpm)
packages_ext=rpm
PKG="$PKG -DAVIDEMUX_PACKAGER=rpm"
;;
--without-qt4)
do_qt4=0
;;
--without-cli)
do_cli=0
;;
--without-gtk)
do_gtk=0
;;
--without-plugins)
do_plugins=0
;;
--without-core)
do_core=0
;;
--with-qt4)
do_qt4=1
;;
--with-cli)
do_cli=1
;;
--with-gtk)
do_gtk=1
;;
--with-plugins)
do_plugins=1
;;
--with-core)
do_core=1
;;
*)
echo "unknown parameter $1"
usage
exit 1
;;
esac
shift
done
config
echo "**BootStrapping avidemux **"
export TOP=$PWD
export POSTFIX=""
export FAKEROOT_DIR=$PWD/install
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
fi
if [ "x$do_core" = "x1" ] ; then
echo "** CORE **"
cd $TOP
export PARAL=""
Process buildCore ../avidemux_core
echo " Installing core"
cd $TOP/buildCore${POSTFIX}
fi
export PARAL="$O_PARAL"
if [ "x$do_qt4" = "x1" ] ; then
echo "** QT4 **"
cd $TOP
Process buildQt4 ../avidemux/qt4
echo " Installing Qt4"
cd $TOP/buildQt4${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_gtk" = "x1" ] ; then
echo "** GTK **"
cd $TOP
Process buildGtk ../avidemux/gtk
echo " Installing Gtk"
cd $TOP/buildGtk${POSTFIX}
fi
if [ "x$do_plugins" = "x1" ] ; then
echo "** Plugins **"
cd $TOP
Process buildPluginsCommon ../avidemux_plugins -DPLUGIN_UI=COMMON
fi
if [ "x$do_plugins" = "x1" -a "x$do_qt4" = "x1" ] ; then
echo "** Plugins Qt4 **"
cd $TOP
Process buildPluginsQt4 ../avidemux_plugins -DPLUGIN_UI=QT4
fi
if [ "x$do_plugins" = "x1" -a "x$do_gtk" = "x1" ] ; then
echo "** Plugins Gtk **"
cd $TOP
Process buildPluginsGtk ../avidemux_plugins -DPLUGIN_UI=GTK
fi
if [ "x$do_plugins" = "x1" -a "x$do_cli" = "x1" ] ; then
echo "** Plugins CLI **"
cd $TOP
Process buildPluginsCLI ../avidemux_plugins -DPLUGIN_UI=CLI
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