🔧 Generate scripts with cmake

This commit is contained in:
2020-10-19 12:48:06 +00:00
committed by GitHub
parent ce83235137
commit 76a08be0ef
12 changed files with 48 additions and 16 deletions

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/Kitware/CMake/releases/download/v@VERSION@/cmake-@VERSION@-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eu
wget "https://dl.bintray.com/conan/installers/conan-ubuntu-64_@VERSION_UNDERSCORE@.deb" -nv -O /tmp/conan.deb
dpkg -i /tmp/conan.deb

View File

@ -0,0 +1,7 @@
#!/bin/bash
set -eu
mkdir -p /tmp/sccache
wget "https://github.com/mozilla/sccache/releases/download/@VERSION@/sccache-@VERSION@-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/sccache.tar.gz
tar xvzf /tmp/sccache.tar.gz --strip 1 -C /tmp/sccache
install -m 755 /tmp/sccache/sccache /usr/local/bin/