blob: dd7307e9b37431b50aaa005e039d5d3c202600d7 (
plain)
1
2
3
4
5
6
7
8
9
|
#! /usr/bin/env bash
set -e -o pipefail
CMAKE_VERSION=$(curl -s https://api.github.com/repos/Kitware/CMake/releases/latest | \
grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/')
curl -fsSL "https://github.com/Kitware/CMake/releases/download/v$CMAKE_VERSION/cmake-$CMAKE_VERSION-linux-x86_64.sh" | \
sh -s -- --skip-license --prefix=/usr
|