homebrew-core/Formula/browser.rb

21 lines
480 B
Ruby

class Browser < Formula
desc "Pipe HTML to a browser"
homepage "https://gist.github.com/318247/"
url "https://gist.github.com/318247.git",
revision: "21e65811a50b3cc8bb2b31c658279714657aab96"
# This the gist revision number
version "7"
bottle do
sha256 cellar: :any_skip_relocation, all: "6de7d877522742138bb0668ba627cdd166b2e0b1c698cc336ba704e68c6338e4"
end
def install
bin.install "browser"
end
test do
system "#{bin}/browser"
end
end