2013-08-02 11:48:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Watchman < Formula
|
|
|
|
homepage 'https://github.com/facebook/watchman'
|
|
|
|
head 'https://github.com/facebook/watchman.git'
|
2013-10-18 23:55:47 +00:00
|
|
|
url 'https://github.com/facebook/watchman/archive/v2.9.1.tar.gz'
|
|
|
|
sha1 '68d2893abc5c0c2fafeeeb8d632a78e292a531e2'
|
2013-08-02 11:48:26 +00:00
|
|
|
|
|
|
|
depends_on :autoconf
|
|
|
|
depends_on :automake
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'pcre'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./autogen.sh"
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-pcre"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
To increase file limits add 'kern.maxfiles=10485760' and 'kern.maxfilesperproc=10485760'
|
|
|
|
to /etc/sysctl.conf (use 'sysctl -w' to do so immediately).
|
|
|
|
|
|
|
|
See https://github.com/facebook/watchman#max-os-file-descriptor-limits
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|