2018-06-13 20:12:52 +02:00
|
|
|
#!/usr/bin/env bash
|
2018-04-13 20:56:49 +02:00
|
|
|
|
|
|
|
set -ex
|
2018-06-09 20:14:19 +02:00
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
ARCH="x86_64"
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
-32)
|
|
|
|
ARCH="x86"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: Usage: ${0##*/} [-32]"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2018-04-13 20:56:49 +02:00
|
|
|
|
|
|
|
if ! command -v curl &> /dev/null; then
|
|
|
|
echo >&2 'error: "curl" not found!'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! command -v tar &> /dev/null; then
|
|
|
|
echo >&2 'error: "tar" not found!'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-08-08 20:45:36 +02:00
|
|
|
if [[ -z "${CMAKE_VERSION}" ]]; then
|
2018-04-13 20:56:49 +02:00
|
|
|
echo >&2 'error: CMAKE_VERSION env. variable must be set to a non-empty value'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-06-05 19:02:12 +02:00
|
|
|
cd /usr/src
|
2018-04-13 20:56:49 +02:00
|
|
|
|
2018-06-09 20:14:19 +02:00
|
|
|
CMAKE_ROOT=cmake-${CMAKE_VERSION}-Centos5-${ARCH}
|
2018-06-05 19:02:12 +02:00
|
|
|
url=https://github.com/dockbuild/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_ROOT}.tar.gz
|
2018-04-13 20:56:49 +02:00
|
|
|
echo "Downloading $url"
|
2021-08-06 01:17:47 +02:00
|
|
|
curl --connect-timeout 30 \
|
|
|
|
--max-time 10 \
|
|
|
|
--retry 5 \
|
|
|
|
--retry-delay 10 \
|
|
|
|
--retry-max-time 30 \
|
|
|
|
-# -LO $url
|
2018-04-13 20:56:49 +02:00
|
|
|
|
2021-08-08 20:45:36 +02:00
|
|
|
tar -xzvf "${CMAKE_ROOT}.tar.gz"
|
|
|
|
rm -f "${CMAKE_ROOT}.tar.gz"
|
2018-04-13 20:56:49 +02:00
|
|
|
|
2021-08-08 20:45:36 +02:00
|
|
|
cd "${CMAKE_ROOT}"
|
2018-04-13 20:56:49 +02:00
|
|
|
|
|
|
|
rm -rf doc man
|
|
|
|
rm -rf bin/cmake-gui
|
|
|
|
|
|
|
|
find . -type f -exec install -D "{}" "/usr/{}" \;
|