forked from hydrogen-music/hydrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·325 lines (278 loc) · 9.94 KB
/
build.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
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
#! /bin/bash
# Hydrogen
# Copyright(c) 2002-2008 by Alex >Comix< Cominu [[email protected]]
# Copyright(c) 2008-2024 The hydrogen development team [[email protected]]
#
# http://www.hydrogen-music.org
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# QTDIR=${QTDIR:-/usr/lib/qt}
VERBOSE=${VERBOSE:-0}
CMAKE_OPTIONS="
-DCMAKE_COLOR_MAKEFILE=1 \
-DWANT_DEBUG=1 \
-DWANT_JACK=1 \
-DWANT_ALSA=1 \
-DWANT_LIBARCHIVE=1 \
-DWANT_RUBBERBAND=1 \
-DWANT_OSS=1 \
-DWANT_PORTAUDIO=1 \
-DWANT_PORTMIDI=1 \
-DWANT_LASH=0 \
-DWANT_LRDF=1 \
-DWANT_COREAUDIO=1 \
-DWANT_COREMIDI=1 \
-DWANT_INTEGRATION_TESTS=1
"
CXXFLAGS="-fstrict-enums -fstack-protector-strong -Werror=format-security -Wformat -Wunused-result -D_FORTIFY_SOURCE=2"
MAKE_OPTS="-j 3"
H2FLAGS="-V0xf"
BUILD_DIR=./build
PLATFORM_STR=`uname`
[ -f cmake_opts ] && source cmake_opts
function cmake_init() {
echo -e " * cmake init\n"
if [ ! -d $BUILD_DIR ]; then
mkdir $BUILD_DIR || exit 1
fi
cd $BUILD_DIR || exit 1
if [ ! -e CMakeCache.txt ]; then
CXXFLAGS=${CXXFLAGS} cmake ${CMAKE_OPTIONS} .. || exit 1
fi
cd .. || exit 1
}
function cmake_clean() {
echo -e " * clean cmake files\n" && rm $BUILD_DIR/CMakeCache.txt 2>/dev/null
}
function cmake_rm() {
echo -e " * rm cmake files\n" && rm -fr $BUILD_DIR 2>/dev/null
}
## Build a Hydrogen-x86_64.AppImage file.
function cmake_appimage() {
## Check for AppImage toolchain.
which linuxdeploy
if [[ "$?" != "0" ]]; then
read -p "AppImage toolchain not present yet. Should it be downloaded? [y|N]: " consent
if [[ "$consent" == "y" ]]; then
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage || exit 1
chmod +x linuxdeploy-x86_64.AppImage || exit 1
wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage || exit 1
chmod +x linuxdeploy-plugin-qt-x86_64.AppImage || exit 1
echo -e "AppImage toolchain was successfully downloaded. Please put it as 'linuxdeploy' into \$PATH. E.g. using\n\tln -s $PWD/linuxdeploy-x86_64.AppImage $HOME/bin/linuxdeploy\n"
fi
exit 1
fi
## Perform a regular cmake build.
cmake_make
cd $BUILD_DIR || exit 1
if [ -d "AppDir" ]; then
rm -rf ./AppDir
fi
## Install the compilation result into a folder which will serve
## as base for the AppImage.
make install DESTDIR=AppDir || exit 1
if [ -f "Hydrogen-x86_64.AppImage" ]; then
rm ./Hydrogen-x86_64.AppImage
fi
## Add custom OpenSSL libraries. They are used as fallback by Qt
## and are only dl_opened in case no matching version was found on
## system level.
LIB_SSL=$(find /usr -name "libssl.so.1.1*" | head -n 1)
LIB_CRYPTO=$(find /usr -name "libcrypto.so.1.1*" | head -n 1)
ISSUE_ERROR=0
if [[ "$(echo $LIB_SSL | wc -c)" == "1" || "$(echo $LIB_CRYPTO | wc -c)" == "1" ]]; then
ISSUE_ERROR=1
else
cp $LIB_SSL AppDir/usr/lib || exit 1
cp $LIB_CRYPTO AppDir/usr/lib || exit 1
fi
## Copy required shared libraries and pack the resulting AppImage
LD_LIBRARY_PATH=AppDir/usr/lib/x86_64-linux-gnu/ linuxdeploy \
--appdir AppDir \
--executable AppDir/usr/bin/hydrogen \
--desktop-file AppDir/usr/share/applications/org.hydrogenmusic.Hydrogen.desktop \
--icon-file AppDir/usr/share/hydrogen/data/img/gray/icon.svg \
--plugin qt \
--output appimage || exit 1
if [[ "$ISSUE_ERROR" == "1" ]]; then
echo -e "\nERROR: unable to find 'libssl.so' and 'libcrypto.so'. They won't be integrated in the AppImage and you should be careful handing it to others\n"
else
echo -e "\nAppImage bundled with [$LIB_SSL] and [$LIB_CRYPTO]\n"
fi
cd ..
}
function cmake_make() {
SILENT=1 update_translations
cmake_init
echo -e " * cmake make\n" && cd $BUILD_DIR || exit 1
if [ $VERBOSE -eq 1 ]; then
VERBOSE=1 make translations $MAKE_OPTS || exit 1
VERBOSE=1 make $MAKE_OPTS || exit 1
else
make translations $MAKE_OPTS || exit 1
make $MAKE_OPTS || exit 1
fi
if [[ "$PLATFORM_STR" == 'Linux' ]]; then
cp src/gui/hydrogen ..
elif [[ "$PLATFORM_STR" == *BSD ]]; then
cp src/gui/hydrogen ..
elif [[ "$PLATFORM_STR" == 'Darwin' ]]; then
cp -rf src/gui/hydrogen.app ..
fi
cd ..
}
function cmake_graph() {
cmake_init
echo -e " * cmake graphviz\n" && cd $BUILD_DIR && cmake --graphviz=cmake.dot .. && dot -Tpng -o cmake_dep.png cmake.dot && cd .. || exit 1
}
function cmake_doc() {
cmake_init
echo -e " * cmake doc\n" && cd $BUILD_DIR && make doc && cd .. || exit 1
}
function cmake_help() {
cmake_init
echo -e " * cmake help\n" && cd $BUILD_DIR && cmake .. -L && cd .. || exit 1
}
function cmake_exec() {
cmake_init
echo -e " * execute hydrogen\n" && ./hydrogen $H2FLAGS || exit 1
}
function cmake_tests() {
cmake_init
echo -e " * execute tests\n" && $BUILD_DIR/src/tests/tests || exit 1
}
function cmake_integration_tests() {
cmake_init
echo -e " * execute integration tests\n"
echo -e " * \texecute JACK teardown test\n"
go run -C ./tests/jackTearDown main.go || exit 1
echo -e "\n * \texecute JACK timebase test\n"
go run -C ./tests/jackTimebase main.go || exit 1
}
function cmake_pkg() {
cmake_init
echo -e " * execute hydrogen\n" && cd $BUILD_DIR && make package_source && cd .. || exit 1
}
function zoop() {
cmake_make
LD_PRELOAD=$(find $BUILD_DIR -name 'libhydrogen-core*' | head -n 1) ./hydrogen $H2FLAGS
}
# Updates the translation files (.ts) in data/i18n to reflect the
# latest state of the translatable strings in src/core and src/gui.
#
# The output of the commands involved can be suppressed by setting the
# variable SILENT to a non-nil value.
function update_translations() {
# Check whether the tools for updating translations are available.
if [ "$QTDIR" ]; then
LUPDATE="$QTDIR/bin/lupdate"
LRELEASE="$QTDIR/bin/lrelease"
else
LUPDATE=$(which lupdate)
LRELEASE=$(which lrelease)
fi;
if [[ -z "$LUPDATE" || -z "$LRELEASE" ]]; then
echo -e " * \e[1;33mERROR: unable to update translations. 'lupdate' and 'lrelease' required.\e[0m\n"
else
UI_GUI=`find src/gui | grep "\.ui$"`
CPP_GUI=`find src/gui | grep "\.cpp$"`
CPP_CORE=`find src/core | grep "\.cpp$"`
H_GUI=`find src/gui | grep "\.h$"`
H_CORE=`find src/core | grep "\.h$"`
FILES="$UI_GUI $CPP_GUI $CPP_CORE $H_GUI $H_CORE"
if [[ -z "$SILENT" ]]; then
CMD_LUPDATE="$LUPDATE -noobsolete ${FILES} -ts"
else
CMD_LUPDATE="$LUPDATE -noobsolete ${FILES} -ts -silent"
fi
echo -e " * update translation files'\n"
# Add all recent changes of translatable strings to the .ts
# files in data/i18n/.
find data/i18n/ -name "*.ts" -type f -exec $CMD_LUPDATE {} \; || exit 1
# Create .qm files from all .ts files. The former will be used
# by the Hydrogen application to lookup translations but are
# not included as git sources as they are compiled binaries.
if [[ -z "$SILENT" ]]; then
CMD_LRELEASE="$LRELEASE data/i18n/*.ts"
else
CMD_LRELEASE="$LRELEASE -silent data/i18n/*.ts"
fi
eval $CMD_LRELEASE || exit 1
fi;
}
if [ $# -eq 0 ]; then
echo "usage $0 [cmds list]"
echo "cmds may be"
echo " r[m] => all built, temp and cache files"
echo " c[lean] => remove cache files"
echo " m[ake] => launch the build process"
echo " mm => launch the build process using ccache"
echo " mt => launch the build process with clang tidy checks enabled"
echo " d[oc] => build html documentation"
echo " g[raph] => draw a dependencies graph"
echo " h[elp] => show the build options"
echo " x[exec] => execute hydrogen"
echo " t[ests] => execute tests"
echo " p[kg] => build source package"
echo " i[ntegration] => execute integration tests"
echo " translate => update all translation files"
echo " appimage => build an AppImage file"
echo " z => build using ccache and run from tree"
echo "ex: $0 r m pkg x"
exit 1
fi
for arg in $@; do
case $arg in
appimage)
BUILD_DIR=./build-appimage
CMAKE_OPTIONS="$CMAKE_OPTIONS -DWANT_APPIMAGE=1 -DWANT_DYNAMIC_JACK_CHECK=1 -DCMAKE_INSTALL_PREFIX=/usr"
cmd="cmake_appimage";;
c|clean)
cmd="cmake_clean";;
i|integration)
cmd="cmake_integration_tests";;
r|rm)
cmd="cmake_rm";;
m|make)
cmd="cmake_make";;
mm)
CMAKE_OPTIONS="$CMAKE_OPTIONS -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache"
cmd="cmake_make";;
mt)
CMAKE_OPTIONS="$CMAKE_OPTIONS -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DWANT_CLANG_TIDY=1"
cmd="cmake_make";;
g|graph)
cmd="cmake_graph";;
d|doc)
cmd="cmake_doc";;
h|help)
cmd="cmake_help";;
x|exec)
cmd="cmake_exec";;
t|test)
cmd="cmake_tests";;
p|pkg)
cmd="cmake_pkg";;
translate)
cmd="update_translations";;
z)
CMAKE_OPTIONS="$CMAKE_OPTIONS -DCMAKE_CXX_COMPILER_LAUNCHER=ccache"
cmd="zoop";;
*)
echo "unknown command ${arg}" && exit 1
esac
$cmd
done
# vim: set softtabstop=4 expandtab: