blob: 7541fee965afeaf5ad0974bf39f9ea09b90c62e2 (
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.3.tar.gz'
sha1 '9c5013332b6ecccb6368b100e6aee377e35b5bb1'
def install
system "make"
bin.install 'mon'
end
end
|