2010-10-04 12:46:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cflow < Formula
|
2011-10-12 19:55:21 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/cflow/cflow-1.4.tar.bz2'
|
2011-11-30 18:56:07 +00:00
|
|
|
mirror 'http://ftp.gnu.org/gnu/cflow/cflow-1.4.tar.bz2'
|
2010-10-04 12:46:34 +00:00
|
|
|
homepage 'http://www.gnu.org/software/cflow/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'b8c3674e47112d5a81c34719fef343430be77f88'
|
2010-10-04 12:46:34 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}", "--infodir=#{info}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|