xref: /Universal-ctags/old-docs/MAINTAINERS (revision 94eb5533b4afecf9ec7f085ede410daa2faa5c1f)
1The following individuals are registered as developers for the maintenance of
2Exuberant Ctags. They are listed by their SourgeForge username and by the
3To send email to any one of them, send it to <username@users.sourceforge.net>.
4
5Ctags           SourgeForge     Full
6Parser          username        Name
7----------      -----------     -----
8Ant             dfishburn       David Fishburn
9AWK             jkoshy          Joseph Koshy
10Basic           elias           Elias Pschernig
11C#              elliotth        Elliott Hughes
12DosBatch        dfishburn       David Fishburn
13Flex            dfishburn       David Fishburn
14Java            elliotth        Elliott Hughes
15JavaScript      dfishburn       David Fishburn
16MATlAB          dfishburn       David Fishburn
17Objective-C     aeruder         Andrew Ruder
18OCaml           vberthoux       Vincent Berthoux
19Perl            perlguy0        Dmitri Tikhonov
20PHP             jafl            John Lindal
21Python          elias           Elias Pschernig
22Ruby            elliotth        Elliott Hughes
23SML             jkoshy          Joseph Koshy
24SQL             dfishburn       David Fishburn
25TeX             dfishburn       David Fishburn
26Vim             dfishburn       David Fishburn
27All else        dhiebert        Darren Hiebert
28
29How To Build & Test Like A Maintainer
30=====================================
31
32Prerequisites
33-------------
34
35  Debian/Ubuntu:
36
37    sudo apt-get install build-essential subversion autoconf
38
39  Mac OS:
40
41    Install the Xcode developer tools, available here:
42    http://developer.apple.com/tools/download/
43
44  Fedora:
45
46    yum install subversion autoheader autoconf
47
48  Windows:
49
50    Install Cygwin plus its Subversion and GNU Make packages.
51
52Building
53--------
54
55  First time:
56
57    git clone git://github.com/universal-ctags/ctags.git
58    cd ctags
59    autoheader
60    autoconf
61    ./configure --enable-maintainer-mode
62    make -j
63
64  Later:
65
66    cd ctags
67    git pull
68    make -j
69
70Testing
71-------
72
73  cd ctags
74  make units
75