-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathbuild_depend.sh
executable file
·485 lines (458 loc) · 15.5 KB
/
build_depend.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
#!/bin/bash
# Author: Kang Lin <[email protected]>
#See: https://blog.csdn.net/alwaysbefine/article/details/114187380
#set -x
set -e
#set -v
if [ -z "$BUILD_VERBOSE" ]; then
BUILD_VERBOSE=OFF
fi
PACKAGE_TOOL=apt
PACKAGE=
APT_UPDATE=0
BASE_LIBS=0
DEFAULT_LIBS=0
QT=0
if [ -z "$QT_VERSION" ]; then
QT_VERSION=6.9.0
fi
FREERDP=0
TIGERVNC=0
PCAPPLUSPLUS=0
RabbitCommon=0
libdatachannel=0
QtService=0
usage_long() {
echo "$0 [-h|--help] [--install=<install directory>] [--source=<source directory>] [--tools=<tools directory>] [--build=<build directory>] [-v|--verbose[=0|1]] [--package=<'package1 package2 ...'>] [--package-tool=<apt|dnf>] [--apt_update=[0|1]] [--base[=0|1]] [--default[=0|1]] [--qt[=0|1|version]] [--rabbitcommon[=0|1]] [--freerdp[=0|1]] [--tigervnc[=0|1]] [--pcapplusplus[=0|1]] [--libdatachannel=[0|1]] [--QtService[0|1]]"
echo " -h|--help: show help"
echo " -v|--verbose: Show verbose"
echo "Directory:"
echo " --install: Set install directory"
echo " --source: Set source directory"
echo " --tools: Set tools directory"
echo " --build: set build directory"
echo "Depend:"
echo " --base: Install the base libraries"
echo " --default: Install the default dependency libraries that comes with the system"
echo " --apt_update: Update system"
echo " --package-tool: Package install tool, apk or dnf"
echo " --package: Install package"
echo " --qt: Install QT"
echo " --rabbitcommon: Install RabbitCommon"
echo " --freerdp: Install FreeRDP"
echo " --tigervnc: Install TigerVNC"
echo " --pcapplusplus: Install PcapPlusPlus"
echo " --libdatachannel: Install libdatachannel"
echo " --QtService: Install QtService"
}
# [如何使用getopt和getopts命令解析命令行选项和参数](https://zhuanlan.zhihu.com/p/673908518)
# [【Linux】Shell命令 getopts/getopt用法详解](https://blog.csdn.net/arpospf/article/details/103381621)
if command -V getopt >/dev/null; then
echo "getopt is exits"
#echo "original parameters=[$@]"
# -o 或 --options 选项后面是可接受的短选项,如 ab:c:: ,表示可接受的短选项为 -a -b -c ,
# 其中 -a 选项不接参数,-b 选项后必须接参数,-c 选项的参数为可选的
# 后面没有冒号表示没有参数。后跟有一个冒号表示有参数。跟两个冒号表示有可选参数。
# -l 或 --long 选项后面是可接受的长选项,用逗号分开,冒号的意义同短选项。
# -n 选项后接选项解析错误时提示的脚本名字
OPTS=help,install:,source:,tools:,build:,verbose::,package:,package-tool:,apt_update::,base::,default::,qt::,rabbitcommon::,freerdp::,tigervnc::,pcapplusplus::,libdatachannel::,QtService::
ARGS=`getopt -o h,v:: -l $OPTS -n $(basename $0) -- "$@"`
if [ $? != 0 ]; then
echo "exec getopt fail: $?"
exit 1
fi
#echo "ARGS=[$ARGS]"
#将规范化后的命令行参数分配至位置参数($1,$2,......)
eval set -- "${ARGS}"
#echo "formatted parameters=[$@]"
while [ $1 ]
do
#echo "\$1: $1"
#echo "\$2: $2"
case $1 in
--install)
INSTALL_DIR=$2
shift 2
;;
--source)
SOURCE_DIR=$2
shift 2
;;
--tools)
TOOLS_DIR=$2
shift 2
;;
--build)
BUILD_DEPEND_DIR=$2
shift 2
;;
--package)
PACKAGE=$2
shift 2
;;
--package-tool)
PACKAGE_TOOL=$2
shift 2
;;
-v | --verbose)
case $2 in
"")
BUILD_VERBOSE=ON;;
*)
BUILD_VERBOSE=$2;;
esac
shift 2
;;
--apt_update)
case $2 in
"")
APT_UPDATE=1;;
*)
APT_UPDATE=$2;;
esac
shift 2
;;
--base)
case $2 in
"")
BASE_LIBS=1;;
*)
BASE_LIBS=$2;;
esac
shift 2
;;
--default)
case $2 in
"")
DEFAULT_LIBS=1;;
*)
DEFAULT_LIBS=$2;;
esac
shift 2
;;
--qt)
case $2 in
"")
QT=1;;
1 | 0)
QT=$2
;;
*)
QT=1
QT_VERSION=$2;;
esac
shift 2
;;
--freerdp)
case $2 in
"")
FREERDP=1;;
*)
FREERDP=$2;;
esac
shift 2
;;
--tigervnc)
case $2 in
"")
TIGERVNC=1;;
*)
TIGERVNC=$2;;
esac
shift 2
;;
--pcapplusplus)
case $2 in
"")
PCAPPLUSPLUS=1;;
*)
PCAPPLUSPLUS=$2;;
esac
shift 2
;;
--rabbitcommon)
case $2 in
"")
RabbitCommon=1;;
*)
RabbitCommon=$2;;
esac
shift 2
;;
--libdatachannel)
case $2 in
"")
libdatachannel=1;;
*)
libdatachannel=$2;;
esac
shift 2
;;
--QtService)
case $2 in
"")
QtService=1;;
*)
QtService=$2;;
esac
shift 2
;;
--) # 当解析到“选项和参数“与“non-option parameters“的分隔符时终止
shift
break
;;
-h | -help)
usage_long
shift
;;
*)
usage_long
break
;;
esac
done
fi
# store repo root as variable
REPO_ROOT=$(readlink -f $(dirname $(dirname $(readlink -f $0))))
OLD_CWD=$(readlink -f .)
pushd "$REPO_ROOT"
if [ -z "$BUILD_DEPEND_DIR" ]; then
BUILD_DEPEND_DIR=build_depend
fi
BUILD_DEPEND_DIR=$(readlink -f ${BUILD_DEPEND_DIR})
mkdir -p $BUILD_DEPEND_DIR
pushd "$BUILD_DEPEND_DIR"
if [ -z "$TOOLS_DIR" ]; then
TOOLS_DIR=Tools
fi
if [ -z "$SOURCE_DIR" ]; then
SOURCE_DIR=Source
fi
if [ -z "$INSTALL_DIR" ]; then
INSTALL_DIR=Install
fi
TOOLS_DIR=$(readlink -f ${TOOLS_DIR})
mkdir -p $TOOLS_DIR
SOURCE_DIR=$(readlink -f ${SOURCE_DIR})
mkdir -p $SOURCE_DIR
INSTALL_DIR=$(readlink -f ${INSTALL_DIR})
mkdir -p $INSTALL_DIR
echo "Repo folder: $REPO_ROOT"
echo "Old folder: $OLD_CWD"
echo "Current folder: `pwd`"
echo "BUILD_DEPEND_DIR: $BUILD_DEPEND_DIR"
echo "TOOLS_DIR: $TOOLS_DIR"
echo "SOURCE_DIR: $SOURCE_DIR"
echo "INSTALL_DIR: $INSTALL_DIR"
if [ $APT_UPDATE -eq 1 ]; then
echo "apt update ......"
apt-get update -y
#apt-get upgrade -y
fi
if [ -n "$PACKAGE" ]; then
${PACKAGE_TOOL} install -y -q $PACKAGE
fi
if [ $BASE_LIBS -eq 1 ]; then
echo "Install base libraries ......"
if [ "$PACKAGE_TOOL" = "apt" ]; then
apt install -y -q build-essential packaging-dev equivs debhelper \
fakeroot graphviz gettext wget curl
# OpenGL
apt install -y -q libgl1-mesa-dev libglx-dev libglu1-mesa-dev libvulkan-dev mesa-common-dev
# Virtual desktop (virtual framebuffer X server for X Version 11). Needed by CI
if [ -z "$RabbitRemoteControl_VERSION" ]; then
apt install -y -q xvfb xpra
fi
# X11
apt install -y -q xorg-dev x11-xkb-utils libxkbcommon-dev libxkbcommon-x11-dev libx11-xcb-dev \
libx11-dev libxfixes-dev libxcb-randr0-dev libxcb-shm0-dev \
libxcb-xinerama0-dev libxcb-composite0-dev libxcomposite-dev \
libxinerama-dev libxcb1-dev libx11-xcb-dev libxcb-xfixes0-dev \
libxcb-cursor-dev libxcb-xkb-dev libxcb-keysyms1-dev \
libxcb-* libxcb-cursor0 xserver-xorg-input-mouse xserver-xorg-input-kbd \
libxkbcommon-dev
# Base dependency
apt install -y -q liblzo2-dev libssl-dev libcrypt-dev libicu-dev zlib1g-dev libssh-dev libtelnet-dev
# RabbitCommon dependency
apt install -y -q libcmark-dev cmark
# VNC dependency
apt install -y -q libpixman-1-dev libjpeg-dev
# FreeRDP dependency
apt install -y -q libcjson-dev libusb-1.0-0-dev \
libkrb5-dev libpulse-dev libcups2-dev libpam0g-dev libutf8proc-dev
# PcapPlusPlus dependency
apt install -y -q libpcap-dev
# FFmpeg needed by QtMultimedia and freerdp
apt install -y -q libavcodec-dev libavformat-dev libresample1-dev libswscale-dev
apt install -y -q libx264-dev libx265-dev
# Needed by QtMultimedia
apt install -y -q pipewire
# Needed by QtMultimedia
apt install -y -q libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer*-dev
# Needed by AppImage and FreeRDP
apt install -y -q libfuse-dev libfuse3-dev
# Other
apt install -y -q libvncserver-dev
fi
if [ "$PACKAGE_TOOL" = "dnf" ]; then
dnf install -y make git rpm-build rpmdevtools gcc-c++ util-linux \
automake autoconf libtool gettext gettext-autopoint \
cmake desktop-file-utils appstream appstream-util curl wget
# X11
dnf install -y xorg-x11-server-source \
libXext-devel libX11-devel libXi-devel libXfixes-devel \
libXdamage-devel libXrandr-devel libXt-devel libXdmcp-devel \
libXinerama-devel mesa-libGL-devel libxshmfence-devel \
libdrm-devel mesa-libgbm-devel \
xorg-x11-util-macros xorg-x11-xtrans-devel libXtst-devel \
xorg-x11-font-utils \
libxkbfile-devel libXfont2-devel
# TigerVNC
dnf install -y zlib-devel openssl-devel libpng-devel \
libjpeg-turbo-devel ffmpeg-free-devel \
pixman-devel gnutls-devel nettle-devel gmp-devel \
libpciaccess-devel freetype-devel pam-devel
fi
fi
if [ $DEFAULT_LIBS -eq 1 ]; then
echo "Install default dependency libraries ......"
if [ "$PACKAGE_TOOL" = "apt" ]; then
# Qt6
apt-get install -y -q qmake6 qt6-tools-dev qt6-tools-dev-tools \
qt6-base-dev qt6-base-dev-tools qt6-qpa-plugins \
libqt6svg6-dev qt6-l10n-tools qt6-translations-l10n \
qt6-scxml-dev qt6-multimedia-dev libqt6serialport6-dev
apt-get install -y -q freerdp2-dev
fi
if [ "$PACKAGE_TOOL" = "dnf" ]; then
dnf install -y qt6-qttools-devel qt6-qtbase-devel qt6-qtmultimedia-devel \
qt6-qt5compat-devel qt6-qtmultimedia-devel qt6-qtscxml-devel \
qt6-qtserialport-devel qt6-qtsvg-devel
fi
fi
if [ $QT -eq 1 ]; then
echo "Install qt ${QT_VERSION} ......"
pushd "$TOOLS_DIR"
if [ ! -d qt_`uname -m` ]; then
# See: https://ddalcino.github.io/aqt-list-server/
# https://www.cnblogs.com/clark1990/p/17942952
if [ "$PACKAGE_TOOL" = "apt" ]; then
apt install -y -q python3-pip python3-pip-whl python3-pipdeptree cpio
fi
#pip install -U pip
pip install aqtinstall
echo "PATH: $PATH"
if [ "`uname -m`" == "x86_64" ]; then
aqt install-qt linux desktop ${QT_VERSION} linux_gcc_64 -m qtscxml qtmultimedia qtimageformats qtserialport qt5compat
mv ${QT_VERSION}/gcc_64 qt_`uname -m`
elif [ "`uname -m`" == "aarch64" ]; then
aqt install-qt linux_arm64 desktop ${QT_VERSION} linux_gcc_arm64 -m qtscxml qtmultimedia qtimageformats qtserialport qt5compat
mv ${QT_VERSION}/gcc_arm64 qt_`uname -m`
fi
fi
popd
fi
if [ $RabbitCommon -eq 1 ]; then
echo "Install RabbitCommon ......"
pushd "$SOURCE_DIR"
if [ ! -d RabbitCommon ]; then
git clone https://github.com/KangLin/RabbitCommon.git
else
cd RabbitCommon
git pull
cd ..
fi
popd
fi
if [ $FREERDP -eq 1 ]; then
echo "Install FreeRDP ......"
pushd "$SOURCE_DIR"
if [ ! -d ${INSTALL_DIR}/lib/cmake/FreeRDP3 ]; then
git clone -b 3.14.1 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
git submodule update --init --recursive
cmake -E make_directory build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_VERBOSE_MAKEFILE=${BUILD_VERBOSE} \
-DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" \
-DWITH_SERVER=ON \
-DWITH_CLIENT_SDL=OFF \
-DWITH_KRB5=OFF \
-DWITH_MANPAGES=OFF
cmake --build . --config Release --parallel $(nproc)
cmake --build . --config Release --target install
fi
popd
fi
if [ $TIGERVNC -eq 1 ]; then
echo "Install tigervnc ......"
pushd "$SOURCE_DIR"
if [ ! -d ${INSTALL_DIR}/lib/cmake/tigervnc ]; then
git clone --depth=1 https://github.com/KangLin/tigervnc.git
cd tigervnc
cmake -E make_directory build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} \
-DCMAKE_VERBOSE_MAKEFILE=${BUILD_VERBOSE} \
-DBUILD_TESTS=OFF -DBUILD_VIEWER=OFF -DENABLE_NLS=OFF
cmake --build . --config Release --parallel $(nproc)
cmake --build . --config Release --target install
fi
popd
fi
if [ $PCAPPLUSPLUS -eq 1 ]; then
echo "Install PcapPlusPlus ......"
pushd "$SOURCE_DIR"
if [ ! -d ${INSTALL_DIR}/lib/cmake/pcapplusplus ]; then
git clone -b v24.09 --depth=1 https://github.com/seladb/PcapPlusPlus.git
cd PcapPlusPlus
cmake -E make_directory build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_VERBOSE_MAKEFILE=${BUILD_VERBOSE} \
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} \
-DPCAPPP_BUILD_EXAMPLES=OFF \
-DPCAPPP_BUILD_TESTS=OFF \
-DPCAPPP_BUILD_TUTORIALS=OFF
cmake --build . --config Release --parallel $(nproc)
cmake --build . --config Release --target install
fi
popd
fi
if [ $libdatachannel -eq 1 ]; then
echo "Install libdatachannel ......"
pushd "$SOURCE_DIR"
if [ ! -d ${INSTALL_DIR}/lib/cmake/LibDataChannel ]; then
git clone -b v0.17.8 --depth=1 https://github.com/paullouisageneau/libdatachannel.git
cd libdatachannel
git submodule update --init --recursive
cmake -E make_directory build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_VERBOSE_MAKEFILE=${BUILD_VERBOSE} \
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}
cmake --build . --config Release --parallel $(nproc)
cmake --build . --config Release --target install
fi
popd
fi
if [ $QtService -eq 1 ]; then
echo "Install QtService ......"
pushd "$SOURCE_DIR"
if [ ! -d ${INSTALL_DIR}/lib/cmake/QtService ]; then
git clone --depth=1 https://github.com/KangLin/qt-solutions.git
cd qt-solutions/qtservice
git submodule update --init --recursive
cmake -E make_directory build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} \
-DCMAKE_VERBOSE_MAKEFILE=${BUILD_VERBOSE}
cmake --build . --config Release --parallel $(nproc)
cmake --build . --config Release --target install
fi
popd
fi