23 lines
781 B
Ruby
23 lines
781 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_skip_relocation
|
|
revision 1
|
|
sha256 "b43dbb305fcb6c681d2208456a1f39dd0aa5b97790b629ac907a666869119f20" => :el_capitan
|
|
sha256 "4d31b501672801394c687aa45a44741f3461fb4730e96fe94197a1e7952fe2e0" => :yosemite
|
|
sha256 "941cd639bf71a7d0e7397b77a3eebce4bd06fbc4ef30aac69147b04b3f6569f8" => :mavericks
|
|
end
|
|
|
|
conflicts_with "watch"
|
|
|
|
def install
|
|
bin.mkdir
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
end
|