blob: 9d3e3db4c5fce91e3ed8612dd8c81c5fd2da6216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
|