aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlex Dunn2015-04-17 13:51:53 -0700
committerJack Nagel2015-04-17 22:21:56 -0400
commit6d398f9175146eaf0c188c85ec763cb0cde1712e (patch)
tree87187112cec419adab0f73fcd662227c3e3e483e /Library/Formula
parentcecac9a3923e46eaccdf9dfda1ea7bd0b25d92c9 (diff)
downloadhomebrew-6d398f9175146eaf0c188c85ec763cb0cde1712e.tar.bz2
bmake 20150410
Closes #38766. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/bmake.rb21
1 files changed, 9 insertions, 12 deletions
diff --git a/Library/Formula/bmake.rb b/Library/Formula/bmake.rb
index 8cbf26033..ab7316f06 100644
--- a/Library/Formula/bmake.rb
+++ b/Library/Formula/bmake.rb
@@ -1,9 +1,7 @@
-require "formula"
-
class Bmake < Formula
homepage "http://www.crufty.net/help/sjg/bmake.html"
- url "http://www.crufty.net/ftp/pub/sjg/bmake-20141111.tar.gz"
- sha1 "a6f670210f9ccde09a0e93a29a766f4726ddfeed"
+ url "http://www.crufty.net/ftp/pub/sjg/bmake-20150410.tar.gz"
+ sha256 "72727f5ddce4448a0136a1e2c536f7627440e3e482700b43c666f96737b2bfce"
bottle do
sha1 "bfb80b95386a6e9c439167573d58a9623650708e" => :yosemite
@@ -25,16 +23,15 @@ class Bmake < Formula
end
test do
- (testpath/"Makefile").write <<-EOS
-all: hello
-
-hello:
-\t@echo 'Test successful.'
+ (testpath/"Makefile").write <<-EOS.undent
+ all: hello
-clean:
-\trm -rf Makefile
-EOS
+ hello:
+ \t@echo 'Test successful.'
+ clean:
+ \trm -rf Makefile
+ EOS
system bin/"bmake"
system bin/"bmake", "clean"
end