Replace cmake package with from-src recipe
authorSiraaj Khandkar <siraaj@khandkar.net>
Sun, 20 Dec 2020 23:27:14 +0000 (18:27 -0500)
committerSiraaj Khandkar <siraaj@khandkar.net>
Sun, 20 Dec 2020 23:27:14 +0000 (18:27 -0500)
deps/cmake/Makefile [new file with mode: 0644]
pkgs-ubuntu.list

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
index 23d6711..9f035ca 100644 (file)
@@ -6,8 +6,11 @@ htop
 zsh
 zsh-syntax-highlighting
 tig
-cmake        # added to build neovim
-cmake-doc
+
+# Use src recipe to install cmake
+#cmake        # added to build neovim
+#cmake-doc
+
 make
 libtool-bin  # added to build neovim
 apt-file
This page took 0.022235 seconds and 4 git commands to generate.