diff options
| author | Ben Chatelain | 2014-02-05 11:54:49 -0700 | 
|---|---|---|
| committer | Mike McQuaid | 2014-02-06 09:17:33 +0000 | 
| commit | 28c218c4db9ff6f909046d54762447691e07ebb2 (patch) | |
| tree | 48ccd37705f3da0959bbf9bb75c38a788ec5c986 /Library/Formula/burl.rb | |
| parent | 2c2df48cdb8b5edb2b3ead4e0fe325eec9c6161b (diff) | |
| download | homebrew-28c218c4db9ff6f909046d54762447691e07ebb2.tar.bz2 | |
burl: 1.0.1 (new formula)
better curl(1) through augmentation
References #13120
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Closes #26436.
Diffstat (limited to 'Library/Formula/burl.rb')
| -rw-r--r-- | Library/Formula/burl.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/burl.rb b/Library/Formula/burl.rb new file mode 100644 index 000000000..51fc64284 --- /dev/null +++ b/Library/Formula/burl.rb @@ -0,0 +1,15 @@ +require "formula" + +class Burl < Formula +  homepage "https://github.com/visionmedia/burl" +  url "https://github.com/visionmedia/burl/archive/1.0.1.tar.gz" +  sha1 "ee21caa267af9e3c679f3c4c38d4ccd6ba2dd655" + +  def install +    bin.install "bin/burl" +  end + +  test do +    system "#{bin}/burl", "-I", "github.com" +  end +end  | 
