aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mon.rb
blob: 0ce6c9eff107cc58d71a69d04c94b125b3b27613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Mon < Formula
  homepage 'https://github.com/visionmedia/mon'
  url 'https://github.com/visionmedia/mon/archive/1.2.0.tar.gz'
  sha1 '5c29c8c972d6f8f586f831cd8fc2c51e53873e16'

  def install
    system "make"
    bin.install 'mon'
  end
end