aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/burl.rb
diff options
context:
space:
mode:
authorBen Chatelain2014-02-05 11:54:49 -0700
committerMike McQuaid2014-02-06 09:17:33 +0000
commit28c218c4db9ff6f909046d54762447691e07ebb2 (patch)
tree48ccd37705f3da0959bbf9bb75c38a788ec5c986 /Library/Formula/burl.rb
parent2c2df48cdb8b5edb2b3ead4e0fe325eec9c6161b (diff)
downloadhomebrew-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.rb15
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