homebrew-core/Formula/fswatch.rb
Jack Nagel 1dcfd05674 fswatch: modernize
- requires C++11
 - use full autotools build
 - remove broken test
2014-05-14 21:27:48 -05:00

21 lines
549 B
Ruby

require "formula"
class Fswatch < Formula
homepage "https://github.com/alandipert/fswatch"
url "https://github.com/alandipert/fswatch/archive/v1.3.2.tar.gz"
sha1 "af52fd305b80bc5e05217edb1d8cdce02fdb4e91"
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