blob: d15ca101d5bb0f37e23cd225c535e2e6f03546ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class Browser < Formula
url "https://gist.github.com/defunkt/318247/raw/7720fc969d58a9bfdc74d71deaa15c1eb7582fc1/browser",
:using => :nounzip
homepage "https://gist.github.com/318247/"
sha1 "beaf6c40851628d188eccc9cc013d44dcb037521"
# This the gist revision number
version "7"
def install
bin.install "browser"
end
test do
ENV["TERM"] = "xterm"
system "#{bin}/browser"
end
end
|