blob: 1c9742b25ae3b10085ba3ec9cb9b8056e86855a0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | require "formula"
class Fswatch < Formula
  homepage "https://github.com/emcrisostomo/fswatch"
  url "https://github.com/emcrisostomo/fswatch/releases/download/1.4.6/fswatch-1.4.6.tar.gz"
  sha1 "d9f50f0361d1fabc280bf45afe2cfc5a3ee34a4d"
  bottle do
    sha1 "11c520a2f84b858ed4b7f1af0390cc35b2a0572c" => :yosemite
    sha1 "6fa6c0691c4156ea0afd4eb7bd3e8ba9635140e1" => :mavericks
    sha1 "355272841f59a7ab5cb248acc48940bec005e5f8" => :mountain_lion
  end
  needs :cxx11
  def install
    ENV.cxx11
    system "./configure", "--prefix=#{prefix}",
                          "--disable-dependency-tracking",
                          "--disable-silent-rules"
    system "make", "install"
  end
end
 |