Skip to content

Instantly share code, notes, and snippets.

@Xenosb
Created February 5, 2020 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xenosb/a84f9936effab6cfae7ae746b52b434b to your computer and use it in GitHub Desktop.
Save Xenosb/a84f9936effab6cfae7ae746b52b434b to your computer and use it in GitHub Desktop.
Install Cmake 3.12.1
#!/usr/bin/env bash
# Run as root
# Download packages
wget http://de.archive.ubuntu.com/ubuntu/pool/main/c/cmake/cmake-data_3.13.4-1_all.deb
wget http://de.archive.ubuntu.com/ubuntu/pool/main/c/cmake/cmake_3.13.4-1_amd64.deb
# Install packges
dpkg -i cmake-data_3.13.4-1_all.deb
dpkg -i cmake_3.13.4-1_amd64.deb
# Clean packages
rm cmake_3.13.4-1_amd64.deb cmake-data_3.13.4-1_all.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment