0d2fdaa1f2
Closes Homebrew/homebrew#31348. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
27 lines
691 B
Ruby
27 lines
691 B
Ruby
require "formula"
|
|
|
|
class Ngrok < Formula
|
|
homepage "https://ngrok.com"
|
|
head "https://github.com/inconshreveable/ngrok.git", :branch => "master"
|
|
url "https://github.com/inconshreveable/ngrok/archive/1.7.tar.gz"
|
|
sha1 "4a6baf98a23193c21d7732c6573f53dbbede5033"
|
|
|
|
bottle do
|
|
sha1 "71920267073415ccc1ea1305bac6ce51e00d4833" => :mavericks
|
|
sha1 "e0a622225d38ee57652b84eaffbca95ab43c3ce2" => :mountain_lion
|
|
sha1 "60b7a16a28265e6e9a9adbac44b3c5069a802d34" => :lion
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on :hg => :build
|
|
|
|
def install
|
|
ENV.j1
|
|
system "make", "release-client"
|
|
bin.install "bin/ngrok"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ngrok", "version"
|
|
end
|
|
end
|