aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chuck.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-23 11:27:49 -0700
committerAdam Vandenberg2014-05-23 11:27:49 -0700
commit29bd840bea4feb0a283e09ded97739b3d05172e0 (patch)
tree1f5c608ff8436e6a8acd2d253591099d0c785783 /Library/Formula/chuck.rb
parentefa03be910edb0c678d0e16c94b8bf99901e9102 (diff)
downloadhomebrew-29bd840bea4feb0a283e09ded97739b3d05172e0.tar.bz2
chuck: style
Diffstat (limited to 'Library/Formula/chuck.rb')
-rw-r--r--Library/Formula/chuck.rb16
1 files changed, 7 insertions, 9 deletions
diff --git a/Library/Formula/chuck.rb b/Library/Formula/chuck.rb
index 3c828c8f2..bc52d9d93 100644
--- a/Library/Formula/chuck.rb
+++ b/Library/Formula/chuck.rb
@@ -1,15 +1,13 @@
-require 'formula'
+require "formula"
class Chuck < Formula
- homepage 'http://chuck.cs.princeton.edu/'
- url 'http://chuck.cs.princeton.edu/release/files/chuck-1.3.4.0.tgz'
- sha1 'd32faae2cb60fc81d2716b477cf2d54bc548d9c6'
+ homepage "http://chuck.cs.princeton.edu/"
+ url "http://chuck.cs.princeton.edu/release/files/chuck-1.3.4.0.tgz"
+ sha1 "d32faae2cb60fc81d2716b477cf2d54bc548d9c6"
def install
- cd "src" do
- system "make osx"
- bin.install "chuck"
- end
- (share/'chuck').install "examples/"
+ system "make", "-C", "src", "osx"
+ bin.install "src/chuck"
+ (share/"chuck").install "examples"
end
end