Doxymacs 1.8.0
The purpose of the doxymacs project is to create a LISP package that will make using Doxygen from within {X}Emacs easier. Version 1.8.0, released 2007-06-10, has the following features: * ability to look up documentation for symbols from {X}Emacs in the browser of your choice. * easily insert Doxygen style comments into source. * optionally use an "external" (i.e. written in C) XML parser to speed up building the completion list. * fontify Doxygen keywords. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
b8804e9675
commit
3aa47d2945
1 changed files with 13 additions and 0 deletions
13
Formula/doxymacs.rb
Normal file
13
Formula/doxymacs.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
require 'formula'
|
||||
|
||||
class Doxymacs < Formula
|
||||
url 'http://downloads.sourceforge.net/project/doxymacs/doxymacs/1.8.0/doxymacs-1.8.0.tar.gz'
|
||||
homepage 'http://doxymacs.sourceforge.net/'
|
||||
md5 'a2c1750efdec955f42e410a18ebd4eb8'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue