homebrew-core/Formula/doxygen.rb

18 lines
445 B
Ruby
Raw Normal View History

require 'formula'
class Doxygen <Formula
url 'http://ftp.stack.nl/pub/users/dimitri/doxygen-1.6.3.src.tar.gz'
homepage 'http://www.doxygen.org/'
md5 '2d6ea20a9d850d94321cee78bab7bb87'
def install
system "./configure", "--prefix", "#{prefix}"
2010-02-16 05:52:56 +00:00
inreplace "Makefile" do |s|
# Path of man1 relative to already given prefix
s.change_make_var! 'MAN1DIR', man1
2010-02-16 05:52:56 +00:00
end
system "make"
2010-02-16 05:52:56 +00:00
system "make install"
end
end