2014-05-15 02:23:08 +00:00
|
|
|
require "formula"
|
2013-09-12 09:27:09 +00:00
|
|
|
|
|
|
|
class Fswatch < Formula
|
2014-08-21 08:50:09 +00:00
|
|
|
homepage "https://github.com/emcrisostomo/fswatch"
|
2014-09-27 11:09:22 +00:00
|
|
|
url "https://github.com/emcrisostomo/fswatch/releases/download/1.4.5/fswatch-1.4.5.zip"
|
|
|
|
sha1 "3cd9b293713a855a13cbcbd6393d2444bcfdb65b"
|
2014-05-14 20:43:11 +00:00
|
|
|
|
2014-06-04 14:45:14 +00:00
|
|
|
bottle do
|
2014-09-27 11:15:54 +00:00
|
|
|
sha1 "b61f31c29361c56629d67d0cdd8ff5c90b1c307d" => :mavericks
|
|
|
|
sha1 "406c88e7119ed88cf27cabe4fbc1adf1d7def61e" => :mountain_lion
|
|
|
|
sha1 "f36a3d2e25ad560d44458c2bef5a45777a2d72b3" => :lion
|
2014-06-04 14:45:14 +00:00
|
|
|
end
|
|
|
|
|
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 "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--disable-silent-rules"
|
|
|
|
system "make", "install"
|
2013-09-12 09:27:09 +00:00
|
|
|
end
|
|
|
|
end
|