2011-03-10 05:11:03 +00:00
|
|
|
class Ctail < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Tool for operating tail across large clusters of machines"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/pquerna/ctail"
|
|
|
|
url "https://github.com/pquerna/ctail/archive/ctail-0.1.0.tar.gz"
|
|
|
|
sha256 "864efb235a5d076167277c9f7812ad5678b477ff9a2e927549ffc19ed95fa911"
|
2012-08-25 16:09:15 +00:00
|
|
|
|
2014-12-09 04:13:04 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "bab0a267f8cf937a80d7d13582d298ecca925e53" => :yosemite
|
|
|
|
sha1 "ed024b77815bf8676f3d0842541b077a9950b79a" => :mavericks
|
|
|
|
sha1 "58dbf4d30c8fb951a6c86c892098082627b9e3ee" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2015-08-10 22:35:34 +00:00
|
|
|
conflicts_with "byobu", :because => "both install `ctail` binaries"
|
|
|
|
|
2014-12-04 22:38:00 +00:00
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
2010-02-17 22:04:48 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "LIBTOOL=glibtool --tag=CC"
|
|
|
|
system "make", "install"
|
2010-02-17 22:04:48 +00:00
|
|
|
end
|
|
|
|
end
|