blob: f215bf0c4cc97da766cdf96335807c5579593355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require "formula"
class Fswatch < Formula
homepage "https://github.com/alandipert/fswatch"
url "https://github.com/alandipert/fswatch/archive/1.3.5.tar.gz"
sha1 "e22d0d21c563dab03f1339ad64530c6358780516"
bottle do
cellar :any
sha1 "f72d8496ac893e2e7314f5a1b405ec4bc8a0d4da" => :mavericks
sha1 "7c2ee61eb7346ff3fc0873ed3dc568aaf60cb8dc" => :mountain_lion
sha1 "9fb2150adee74b9717b4c3fb5d21e122fb440541" => :lion
end
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
|