24 lines
678 B
Ruby
24 lines
678 B
Ruby
class Mongroup < Formula
|
|
desc "Monitor a group of processes with mon"
|
|
homepage "https://github.com/jgallen23/mongroup"
|
|
url "https://github.com/jgallen23/mongroup/archive/0.4.1.tar.gz"
|
|
sha256 "50c6fb0eb6880fa837238a2036f9bc77d2f6db8c66b8c9a041479e2771a925ae"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
revision 1
|
|
sha256 "8e801dac08ad7a776d698dc8bfc170f1df2fcb621561b86c789cc0e8098b1b38" => :el_capitan
|
|
sha256 "f7db89622f5575404e2ccbb1d0aca159f06b82766f27ac28bd41492d498128a7" => :mavericks
|
|
end
|
|
|
|
depends_on "mon"
|
|
|
|
def install
|
|
bin.mkpath
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/mongroup", "-V"
|
|
end
|
|
end
|