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

class Cflow < Formula
  url 'http://ftpmirror.gnu.org/cflow/cflow-1.4.tar.bz2'
  homepage 'http://www.gnu.org/software/cflow/'
  md5 '3d1bb6ae5cb6c31311b5fcead625dd57'

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