aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorShaun Jackman2015-01-19 16:32:01 -0800
committerMisty De Meo2015-01-19 17:55:02 -0800
commitc00d3a2a8f3f0bba9cf84da907209a51ce4cf6cf (patch)
tree52aa56ce51c95f9464c8b5383af44eb08fd9ba57 /Library/Formula
parent22905df580716bd69ee10c4a6cbfc75e0c9818bc (diff)
downloadhomebrew-c00d3a2a8f3f0bba9cf84da907209a51ce4cf6cf.tar.bz2
makefile2graph 1.5.0
Closes #36044. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/makefile2graph.rb12
1 files changed, 5 insertions, 7 deletions
diff --git a/Library/Formula/makefile2graph.rb b/Library/Formula/makefile2graph.rb
index 7ebe2294e..53385e5ff 100644
--- a/Library/Formula/makefile2graph.rb
+++ b/Library/Formula/makefile2graph.rb
@@ -1,9 +1,7 @@
-require "formula"
-
class Makefile2graph < Formula
homepage "https://github.com/lindenb/makefile2graph"
- url "https://github.com/lindenb/makefile2graph/archive/stable1.2.tar.gz"
- sha1 "fd6799c23e4b9599f4caf23b0ce0993ab33362a8"
+ url "https://github.com/lindenb/makefile2graph/archive/v1.5.0.tar.gz"
+ sha1 "0f7be09d8b77e3a0b1769ddd011a45283ea4f1f4"
head "https://github.com/lindenb/makefile2graph.git"
bottle do
@@ -18,8 +16,8 @@ class Makefile2graph < Formula
def install
system "make"
system "make", "test" if build.with? "graphviz"
- bin.install "make2graph"
- man1.install "make2graph.1"
+ bin.install "make2graph", "makefile2graph"
+ man1.install "make2graph.1", "makefile2graph.1"
doc.install "LICENSE", "README.md", "screenshot.png"
end
@@ -34,6 +32,6 @@ class Makefile2graph < Formula
system "make -Bnd >make-Bnd"
system "#{bin}/make2graph <make-Bnd"
system "#{bin}/make2graph --root <make-Bnd"
- system "#{bin}/make2graph -x <make-Bnd"
+ system "#{bin}/makefile2graph"
end
end