6 lines
191 B
Bash
6 lines
191 B
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
wget "https://github.com/Kitware/CMake/releases/download/v3.19.1/cmake-3.19.1-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
|
|
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local
|