2014-05-15 02:23:08 +00:00
|
|
|
require "formula"
|
2013-09-12 09:27:09 +00:00
|
|
|
|
|
|
|
class Fswatch < Formula
|
2014-05-15 02:23:08 +00:00
|
|
|
homepage "https://github.com/alandipert/fswatch"
|
2014-05-30 18:29:50 +00:00
|
|
|
url "https://github.com/alandipert/fswatch/archive/1.3.4.tar.gz"
|
|
|
|
sha1 "09609bcd795c70e6c559ecb66ff22eb6764ef2b8"
|
2014-05-14 20:43:11 +00:00
|
|
|
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
2013-09-12 09:27:09 +00:00
|
|
|
|
2014-05-15 02:23:08 +00:00
|
|
|
needs :cxx11
|
2013-09-12 09:27:09 +00:00
|
|
|
|
2014-05-15 02:23:08 +00:00
|
|
|
def install
|
|
|
|
ENV.cxx11
|
|
|
|
system "./autogen.sh"
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--disable-silent-rules"
|
|
|
|
system "make", "install"
|
2013-09-12 09:27:09 +00:00
|
|
|
end
|
|
|
|
end
|