File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,19 @@ pushd cmake
20
20
# install cmake specific to host architecture.
21
21
if [[ $HOSTTYPE == " powerpc64le" ]]
22
22
then
23
- wget -O - https://cmake.org/files/v3.12 /cmake-3.12 .0.tar.gz | tar -xz --strip-components=1
23
+ wget -O - https://cmake.org/files/v3.14 /cmake-3.14 .0.tar.gz | tar -xz --strip-components=1
24
24
# compile cmake
25
25
./configure > /dev/null 2>&1 && make > /dev/null 2>&1 && sudo make install > /dev/null 2>&1
26
26
else
27
- wget -O - https://cmake.org/files/v3.12/cmake-3.12.3-Linux-x86_64.tar.gz | tar -xz --strip-components=1
27
+ wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0-Linux-x86_64.sh
28
+ sudo sh cmake-3.14.0-Linux-x86_64.sh --prefix=/usr --skip-license
28
29
fi
29
30
popd
30
31
31
32
# compile libzip
32
- git clone -b rel-1-5-1 https://github.com/nih-at/libzip.git
33
+ git clone -b rel-1-5-2 https://github.com/nih-at/libzip.git
33
34
pushd libzip
34
- ../cmake/bin/ cmake -DCMAKE_INSTALL_PREFIX=$LIBZIP_INSTALL_DIR .
35
+ cmake -DCMAKE_INSTALL_PREFIX=$LIBZIP_INSTALL_DIR .
35
36
make
36
37
make install
37
38
popd
You can’t perform that action at this time.
0 commit comments