aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBenny Wong2014-05-14 16:43:11 -0400
committerJack Nagel2014-05-14 21:26:25 -0500
commit4d031ae2e1872b865df8eda74e3a87f2bda93d21 (patch)
tree2f5bd7856bf9913894028ea265f13ab7aadfdaf4 /Library/Formula
parentc601e1473d19d2f9e60346e8e422235cab9eab7c (diff)
downloadhomebrew-4d031ae2e1872b865df8eda74e3a87f2bda93d21.tar.bz2
fswatch 1.3.2
Closes #29261. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fswatch.rb9
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