forked from abcdabcd987/nexuslb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-deps.bash
executable file
·116 lines (99 loc) · 3.51 KB
/
build-deps.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
#!/bin/bash
set -e
set -x
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
SRC_DIR="$SCRIPT_DIR/build-dep-src"
INSTALL_DIR="$SCRIPT_DIR/build-dep-install"
mkdir -p "$SRC_DIR"
mkdir -p "$INSTALL_DIR"
cd "$SRC_DIR"
###### yaml-cpp 0.6.3 ######
# ref: https://github.com/jbeder/yaml-cpp/tree/yaml-cpp-0.6.3
if [ ! -d "$INSTALL_DIR/yaml-cpp" ]; then
wget -N https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.6.3.tar.gz -O yaml-cpp-0.6.3.tar.gz
tar xf yaml-cpp-0.6.3.tar.gz
cd yaml-cpp-yaml-cpp-0.6.3/
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR/yaml-cpp" -DYAML_BUILD_SHARED_LIBS=ON
make -j$(nproc)
make install
cd ../..
fi
###### Boost 1.72.0 ######
# ref: https://www.boost.org/doc/libs/1_72_0/more/getting_started/unix-variants.html
if [ ! -d "$INSTALL_DIR/boost" ]; then
wget -N https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.gz -O boost_1_72_0.tar.gz
tar xf boost_1_72_0.tar.gz
cd boost_1_72_0
./bootstrap.sh --prefix="$INSTALL_DIR/boost"
./b2 install --prefix="$INSTALL_DIR/boost" --without-python --without-mpi --layout=system -j$(nproc)
cd ..
fi
###### OpenCV 4.2.0 ######
# ref: https://docs.opencv.org/4.2.0/d7/d9f/tutorial_linux_install.html
if [ ! -d "$INSTALL_DIR/opencv" ]; then
wget -N https://github.com/opencv/opencv/archive/4.2.0.zip -O opencv-4.2.0.zip
unzip opencv-4.2.0.zip
cd opencv-4.2.0
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR/opencv" -DOPENCV_GENERATE_PKGCONFIG=ON -DBUILD_opencv_python2=OFF -DBUILD_opencv_python3=OFF -DBUILD_JAVA=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DWITH_QT=OFF -DWITH_GTK=OFF -DWITH_FFMPEG=OFF -DWITH_GSTREAMER=OFF -DBUILD_LIST=core,imgcodecs,imgproc
make -j$(nproc)
make install
cd ../..
fi
###### gflags 2.2.2 ######
# ref: https://github.com/gflags/gflags/blob/master/INSTALL.md
if [ ! -d "$INSTALL_DIR/gflags" ]; then
wget -N https://github.com/gflags/gflags/archive/v2.2.2.tar.gz -O gflags-2.2.2.tar.gz
tar xf gflags-2.2.2.tar.gz
cd gflags-2.2.2
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR/gflags" -DBUILD_SHARED_LIBS=ON
make -j$(nproc)
make install
cd ../..
fi
###### glog 0.4.0 ######
# ref: https://github.com/google/glog/blob/master/cmake/INSTALL.md
if [ ! -d "$INSTALL_DIR/glog" ]; then
wget -N https://github.com/google/glog/archive/v0.4.0.tar.gz -O glog-0.4.0.tar.gz
tar xf glog-0.4.0.tar.gz
cd glog-0.4.0
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR/glog" -DBUILD_SHARED_LIBS=ON
make -j$(nproc)
make install
cd ../..
fi
###### gtest 1.10.0 ######
# ref: https://github.com/google/googletest/blob/master/googletest/README.md
if [ ! -d "$INSTALL_DIR/gtest" ]; then
wget -N https://github.com/google/googletest/archive/release-1.10.0.tar.gz -O googletest-release-1.10.0.tar.gz
tar xf googletest-release-1.10.0.tar.gz
cd googletest-release-1.10.0
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR/gtest" -DBUILD_SHARED_LIBS=OFF
make -j$(nproc)
make install
cd ../..
fi
###### grpc 1.27.0 ######
# ref: https://github.com/grpc/grpc/blob/master/BUILDING.md
if [ ! -d "$INSTALL_DIR/grpc" ]; then
if [ ! -d grpc-1.27 ]; then
git clone -b v1.27.0 --depth 1 https://github.com/grpc/grpc grpc-1.27
cd grpc-1.27
git submodule update --init
else
cd grpc-1.27
fi
make -j$(nproc)
make install prefix="$INSTALL_DIR/grpc"
cd ..
fi
exit 0