diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fswatch.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/fswatch.rb b/Library/Formula/fswatch.rb index 8a1250f36..89abbe6c6 100644 --- a/Library/Formula/fswatch.rb +++ b/Library/Formula/fswatch.rb @@ -2,10 +2,15 @@ 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' + url 'https://github.com/alandipert/fswatch/archive/v1.3.2.tar.gz' + sha1 'af52fd305b80bc5e05217edb1d8cdce02fdb4e91' + + depends_on "autoconf" => :build + depends_on "automake" => :build def install + system './autogen.sh' + system './configure' system 'make' bin.install 'fswatch' end |
