Replace cmake package with from-src recipe
[khome.git] / deps / cmake / Makefile
1 N_PROC := $(shell nproc)
2
3 .PHONY: all
4 all:
5 mkdir -p data
6 cd data && wget -c https://github.com/Kitware/CMake/releases/download/v3.19.2/cmake-3.19.2.tar.gz
7 cd data && tar vxzf cmake-3.19.2.tar.gz
8 cd data/cmake-3.19.2 && ./bootstrap && make -j$(N_PROC) && make -j$(N_PROC) install
This page took 0.062408 seconds and 4 git commands to generate.