aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/doxygen.rb
blob: a50c659e661f3be2905e8e92e0d30733bd50b5c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Doxygen < Formula
  url 'http://ftp.stack.nl/pub/users/dimitri/doxygen-1.7.5.1.src.tar.gz'
  homepage 'http://www.doxygen.org/'
  sha1 '15671defd1eefe255aa564b6f3097e30ab07ff55'
  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