homebrew-core/Formula/doxygen.rb
Daniel Holtmann-Rice eca6f69ba0 doxygen 1.7.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-14 16:40:31 -07:00

19 lines
521 B
Ruby

require 'formula'
class Doxygen < Formula
url 'http://ftp.stack.nl/pub/users/dimitri/doxygen-1.7.5.src.tar.gz'
homepage 'http://www.doxygen.org/'
md5 '40912d0a4b8248d78df6f705837dcd80'
head 'https://doxygen.svn.sourceforge.net/svnroot/doxygen/trunk'
def install
system "./configure", "--prefix", prefix
inreplace "Makefile" do |s|
# Path of man1 relative to already given prefix
s.change_make_var! 'MAN1DIR', 'share/man/man1'
end
system "make"
system "make install"
end
end