diff options
| author | Frizlab | 2015-03-04 09:07:13 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2015-04-19 10:08:29 +0100 |
| commit | 7aeabaff2028685a919de90f134a805fe0cee7b2 (patch) | |
| tree | 591139b288b9813d311cc7d69f87250da0254607 /Library | |
| parent | ba291a2b2f3e71e63636510d6e59e3e29402256c (diff) | |
| download | homebrew-7aeabaff2028685a919de90f134a805fe0cee7b2.tar.bz2 | |
fsevent_watch 0.1 (new formula)
Closes #37389.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fsevent_watch.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/fsevent_watch.rb b/Library/Formula/fsevent_watch.rb new file mode 100644 index 000000000..df3f8a7f1 --- /dev/null +++ b/Library/Formula/fsevent_watch.rb @@ -0,0 +1,16 @@ +class FseventWatch < Formula + homepage "https://github.com/proger/fsevent_watch" + url "https://github.com/proger/fsevent_watch/archive/v0.1.tar.gz" + sha256 "260979f856a61230e03ca1f498c590dd739fd51aba9fa36b55e9cae776dcffe3" + + head "https://github.com/proger/fsevent_watch.git" + + def install + bin.mkpath + system "make", "install", "PREFIX=#{prefix}", "CFLAGS=-DCLI_VERSION=\\\"#{version}\\\"" + end + + test do + system "fsevent_watch", "--version" + end +end |
