diff options
| author | Simon Sigurdhsson | 2013-04-02 19:44:04 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-30 08:49:30 -0700 |
| commit | cd8ad2e9779bc3d3ff425dfb2e7630d95d54c590 (patch) | |
| tree | b577f01cbaa467aa6712ad70ad3944eed64d8d14 /Library | |
| parent | c91f66d8529e950096375ae858f7c6f7d6627fbc (diff) | |
| download | homebrew-cd8ad2e9779bc3d3ff425dfb2e7630d95d54c590.tar.bz2 | |
visionmedia-watch 0.2.1
Closes #18910.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/visionmedia-watch.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/visionmedia-watch.rb b/Library/Formula/visionmedia-watch.rb new file mode 100644 index 000000000..755ab3dd9 --- /dev/null +++ b/Library/Formula/visionmedia-watch.rb @@ -0,0 +1,13 @@ +require 'formula' + +class VisionmediaWatch < Formula + homepage 'https://github.com/visionmedia/watch' + url 'https://github.com/visionmedia/watch/archive/0.2.1.tar.gz' + head 'https://github.com/visionmedia/watch.git' + sha1 '752006185eadb34a0ec3bdbea259c27359d886d0' + + def install + bin.mkdir + system "make", "PREFIX=#{prefix}", "install" + end +end |
