diff options
| author | YoungTaek Oh | 2011-04-06 00:41:41 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-13 23:19:15 -0700 |
| commit | 321c2cc4021c95e4c76e69d54783471d94525a9b (patch) | |
| tree | ec2b76e8191bec5f7bcab42fb091d936b9bdc7ff /Library | |
| parent | 098b060d82962902dcd4741338d5f0a447a88d84 (diff) | |
| download | homebrew-321c2cc4021c95e4c76e69d54783471d94525a9b.tar.bz2 | |
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>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/doxymacs.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/doxymacs.rb b/Library/Formula/doxymacs.rb new file mode 100644 index 000000000..02d596ec4 --- /dev/null +++ b/Library/Formula/doxymacs.rb @@ -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 |
