aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mongroup.rb
blob: af246ca6c32051af929c381265b05a5423f376aa (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
require "formula"

class Mongroup < Formula
  homepage "https://github.com/jgallen23/mongroup"
  url "https://github.com/jgallen23/mongroup/archive/0.4.0.tar.gz"
  sha1 "b6472e325016353afaac04528e3226dc80401e95"

  bottle do
    cellar :any
    sha1 "4bbb2d481dfe45155e4dee9d19dcb6bfa7ebb4a0" => :mavericks
    sha1 "3509859c251caa6902fe5647ef1e76db63efbab4" => :mountain_lion
    sha1 "99a09ceb9c043124e1210ccc253e15812dd4ab4a" => :lion
  end

  depends_on "mon"

  def install
    bin.mkpath
    system "make", "install", "PREFIX=#{prefix}"
  end

  test do
    system "#{bin}/mongroup", "-V"
  end
end