aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-26 18:15:28 -0800
committerAdam Vandenberg2013-01-26 18:15:28 -0800
commit916955cfbede24b4d91029384a785da791457d28 (patch)
tree560d290f9ef5504547b6bf7b704f6de22cbc4866 /Library/Formula
parent29d87c7e7f02961d375ea703c3c816de1e44e6eb (diff)
downloadhomebrew-916955cfbede24b4d91029384a785da791457d28.tar.bz2
cflow: style nit
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cflow.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/cflow.rb b/Library/Formula/cflow.rb
index ec72faf73..1a04530b3 100644
--- a/Library/Formula/cflow.rb
+++ b/Library/Formula/cflow.rb
@@ -1,14 +1,15 @@
require 'formula'
class Cflow < Formula
+ homepage 'http://www.gnu.org/software/cflow/'
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}"
+ "--prefix=#{prefix}",
+ "--infodir=#{info}"
system "make install"
end
end