homebrew-core/Formula/fswatch.rb
Enrico M. Crisostomo 4cabd9baf5 fswatch 1.3.4
Closes Homebrew/homebrew#29714.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-30 13:48:43 -05:00

21 lines
548 B
Ruby

require "formula"
class Fswatch < Formula
homepage "https://github.com/alandipert/fswatch"
url "https://github.com/alandipert/fswatch/archive/1.3.4.tar.gz"
sha1 "09609bcd795c70e6c559ecb66ff22eb6764ef2b8"
depends_on "autoconf" => :build
depends_on "automake" => :build
needs :cxx11
def install
ENV.cxx11
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-silent-rules"
system "make", "install"
end
end