homebrew-core/Formula/visionmedia-watch.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

22 lines
671 B
Ruby

class VisionmediaWatch < Formula
desc "Periodically executes the given command"
homepage "https://github.com/visionmedia/watch"
url "https://github.com/visionmedia/watch/archive/0.3.1.tar.gz"
sha256 "769196a9f33d069b1d6c9c89e982e5fdae9cfccd1fd4000d8da85e9620faf5a6"
head "https://github.com/visionmedia/watch.git"
bottle do
cellar :any
sha1 "8491a4f2601bbb56bb071ea7c800d529d97e3b85" => :mavericks
sha1 "6fd809bb5216c0e1d75e7ea43c52a55b6bd52f0b" => :mountain_lion
sha1 "4e046b6c5fdc152127cb968b53324cc3fe362745" => :lion
end
conflicts_with "watch"
def install
bin.mkdir
system "make", "PREFIX=#{prefix}", "install"
end
end