blob: dab79517bcb8957594c3b76508498910dd61d0b0 (
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
homepage 'http://www.doxygen.org/'
url 'http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.1.src.tar.gz'
sha1 '7a340a866ba9f55d941fb1de30dfb8a3d23109b2'
head 'https://doxygen.svn.sourceforge.net/svnroot/doxygen/trunk'
def install
system "./configure", "--prefix", prefix
system "make", "CC=#{ENV.cc}",
"CXX=#{ENV.cxx}",
"CFLAGS=#{ENV.cflags}",
"CXXFLAGS=#{ENV.cflags}"
# MAN1DIR, relative to the given prefix
system "make", "MAN1DIR=share/man/man1", "install"
end
end
|