diff options
| -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  | 
