Replace cmake package with from-src recipe
[khome.git] / deps / cmake / Makefile
diff --git a/deps/cmake/Makefile b/deps/cmake/Makefile
new file mode 100644 (file)
index 0000000..8466df8
--- /dev/null
@@ -0,0 +1,8 @@
+N_PROC := $(shell nproc)
+
+.PHONY: all
+all:
+       mkdir -p data
+       cd data && wget -c https://github.com/Kitware/CMake/releases/download/v3.19.2/cmake-3.19.2.tar.gz
+       cd data && tar vxzf cmake-3.19.2.tar.gz
+       cd data/cmake-3.19.2 && ./bootstrap && make -j$(N_PROC) && make -j$(N_PROC) install
This page took 0.020908 seconds and 4 git commands to generate.