homebrew-core/Formula/fswatch.rb
Kenneth Powers d3ee7e752a Updated fswatch to version 0.0.2
Version statement no longer required as version is scanned from url.

Closes Homebrew/homebrew#24533.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-20 17:52:06 -08:00

16 lines
370 B
Ruby

require 'formula'
class Fswatch < Formula
homepage 'https://github.com/alandipert/fswatch'
url 'https://github.com/alandipert/fswatch/archive/r0.0.2.tar.gz'
sha1 '80dcf0d4af0b28f1b777528050f2e094218cee5f'
def install
system 'make'
bin.install 'fswatch'
end
test do
system "fswatch 2>&1| grep 'You must specify a directory to watch'"
end
end