2015-02-16 10:41:07 +00:00
|
|
|
class Browser < Formula
|
|
|
|
url "https://gist.github.com/defunkt/318247/raw/7720fc969d58a9bfdc74d71deaa15c1eb7582fc1/browser",
|
|
|
|
:using => :nounzip
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Pipe HTML to a browser"
|
2015-02-16 10:41:07 +00:00
|
|
|
homepage "https://gist.github.com/318247/"
|
|
|
|
sha1 "beaf6c40851628d188eccc9cc013d44dcb037521"
|
|
|
|
# This the gist revision number
|
|
|
|
version "7"
|
2010-04-26 15:48:18 +00:00
|
|
|
|
2015-02-16 10:41:07 +00:00
|
|
|
def install
|
|
|
|
bin.install "browser"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
ENV["TERM"] = "xterm"
|
|
|
|
system "#{bin}/browser"
|
|
|
|
end
|
2010-04-26 15:48:18 +00:00
|
|
|
end
|