From 8cc55bca7578dd9acad1e106b9f26400ce761f95 Mon Sep 17 00:00:00 2001 From: humphreylin Date: Wed, 4 Sep 2019 15:25:35 +0800 Subject: add the install of ctags in install --- install.sh | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index b366afe..2031187 100644 --- a/install.sh +++ b/install.sh @@ -19,16 +19,34 @@ usage() { base_install() { echo "--------- Install Base Packages Now ---------" if command -v apt > /dev/null; then - apt update - apt upgrade + apt update + apt upgrade apt install git \ curl \ cmake \ build-essential \ python3-dev \ autojump \ - zsh + zsh \ + gcc \ + make fi + + # Universal Ctags + apt install pkg-config autoconf automake \ + python3-docutils \ + libseccomp-dev \ + libjansson-dev \ + libyaml-dev \ + libxml2-dev + git clone git@github.com:universal-ctags/ctags.git + ( + cd ctags + ./autogen.sh + ./configure + make + make install + ) } get_dotfiles() { -- cgit v1.2.3