homebrew-core/Formula/ctail.rb

26 lines
855 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Ctail < Formula
desc "Tool for operating tail across large clusters of machines"
homepage "https://github.com/pquerna/ctail"
url "https://github.com/pquerna/ctail/archive/ctail-0.1.0.tar.gz"
sha256 "864efb235a5d076167277c9f7812ad5678b477ff9a2e927549ffc19ed95fa911"
2014-12-09 04:13:04 +00:00
bottle do
cellar :any
sha1 "bab0a267f8cf937a80d7d13582d298ecca925e53" => :yosemite
sha1 "ed024b77815bf8676f3d0842541b077a9950b79a" => :mavericks
sha1 "58dbf4d30c8fb951a6c86c892098082627b9e3ee" => :mountain_lion
end
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
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "make", "LIBTOOL=glibtool --tag=CC"
system "make", "install"
end
end