xref: /OpenGrok/dev/install-universal_ctags.sh (revision b5285ff89e34ef5a1f78282e24dfc4d36b63c18a)
1#!/bin/bash
2
3set -e
4
5#
6# Clone Universal ctags Github repository and compile from source.
7#
8cd ctags
9./autogen.sh
10./configure && make && make install
11/usr/local/bin/ctags --version
12