blob: ec72faf73afff938961f06b9b90e92404ef84009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Cflow < Formula
url 'http://ftpmirror.gnu.org/cflow/cflow-1.4.tar.bz2'
mirror 'http://ftp.gnu.org/gnu/cflow/cflow-1.4.tar.bz2'
homepage 'http://www.gnu.org/software/cflow/'
sha1 'b8c3674e47112d5a81c34719fef343430be77f88'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--infodir=#{info}"
system "make install"
end
end
|