aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ngrok.rb
blob: 3d5a94ad6149aa9f5440b583703f271c8cfc4e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require "formula"

class Ngrok < Formula
  homepage "https://ngrok.com"
  head "https://github.com/inconshreveable/ngrok.git"
  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