aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cflow.rb
blob: 980446e5e288f9ca3d78363832ff290cd3cf962c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Cflow <Formula
  url 'http://ftp.gnu.org/gnu/cflow/cflow-1.3.tar.bz2'
  homepage 'http://www.gnu.org/software/cflow/'
  md5 'b3fe4bfba9d648447065b3c2d73ae66c'

  def install
    ENV.append "CFLAGS", " -fno-common"
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--infodir=#{info}"
    system "make install"
  end
end