mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 04:03:52 +00:00
* spelling: argument * spelling: conflicts * spelling: correctly * spelling: default * spelling: description * spelling: empty * spelling: enum * spelling: javascript * spelling: modifying * spelling: nonexistent * spelling: plumbum * spelling: programmatically * spelling: received * spelling: replaced * spelling: required * spelling: sanitizers * spelling: semicolon * spelling: source * spelling: subcommands * spelling: successful
24 lines
416 B
Bash
Executable File
24 lines
416 B
Bash
Executable File
#!/bin/bash -l
|
|
|
|
set -ex
|
|
|
|
mkdir -p cmake_dir
|
|
mkdir -p build_tmp
|
|
mkdir -p cmake_sources
|
|
rm -rf cmake_dir/* build_tmp/*
|
|
|
|
v=$1
|
|
fn=cmake-$v-Linux-x86_64.tar.gz
|
|
|
|
if [ ! -f cmake_sources/$fn ]; then
|
|
wget -qO cmake_sources/$fn "https://cmake.org/files/v${v%.*}/$fn"
|
|
fi
|
|
|
|
tar -xzf cmake_sources/$fn --strip-components=1 -C $PWD/cmake_dir
|
|
|
|
export PATH=$PWD/cmake_dir/bin:$PATH
|
|
|
|
cmake --version
|
|
|
|
cd build_tmp && cmake .. $2
|