2011-04-05 15:41:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Doxymacs < Formula
|
|
|
|
homepage 'http://doxymacs.sourceforge.net/'
|
2013-01-27 22:20:36 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/doxymacs/doxymacs/1.8.0/doxymacs-1.8.0.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'b2aafb4f2d20ceb63614c2b9f06d79dd484d8e2e'
|
2011-04-05 15:41:41 +00:00
|
|
|
|
2012-10-14 17:13:25 +00:00
|
|
|
# see http://librelist.com/browser/homebrew/2012/10/14/problems-building-doxymacs-on-mountain-lion/
|
|
|
|
# reported as https://sourceforge.net/tracker/?func=detail&aid=3577208&group_id=23584&atid=378985
|
|
|
|
fails_with :clang do
|
|
|
|
build 421
|
|
|
|
cause "missing symbols while linking"
|
|
|
|
end
|
|
|
|
|
2011-04-05 15:41:41 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|