blob: 38cf795228ef1bc558a3f2d070adfc4136e755b0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | require 'formula'
class Mon < Formula
  homepage 'https://github.com/visionmedia/mon'
  url 'https://github.com/visionmedia/mon/archive/1.2.3.tar.gz'
  sha1 '9c5013332b6ecccb6368b100e6aee377e35b5bb1'
  bottle do
    cellar :any
    sha1 "4279caae6fd47b43bb884787daff34a0c65c915b" => :mavericks
    sha1 "07ff0b1e1cf96cd22a57c26e8b03174964fa928f" => :mountain_lion
    sha1 "c0f4c73f81ceb8773a40fbb5c9385f61ce9a25be" => :lion
  end
  def install
    bin.mkpath
    system "make", "install", "PREFIX=#{prefix}"
  end
  test do
    system bin/"mon", "-V"
  end
end
 |