homebrew-core/Formula/ctail.rb

18 lines
471 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ctail < Formula
homepage 'https://github.com/pquerna/ctail'
url 'https://github.com/pquerna/ctail/archive/ctail-0.1.0.tar.gz'
sha1 'be669c11118c29aac4b76540dfcdf245d29a4a92'
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