2010-02-17 22:04:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ctail < Formula
|
2014-12-09 03:58:42 +00:00
|
|
|
homepage 'https://github.com/pquerna/ctail'
|
|
|
|
url 'https://github.com/pquerna/ctail/archive/ctail-0.1.0.tar.gz'
|
|
|
|
sha1 'be669c11118c29aac4b76540dfcdf245d29a4a92'
|
2012-08-25 16:09:15 +00:00
|
|
|
|
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"
|
2013-12-30 09:35:54 +00:00
|
|
|
system 'make', 'LIBTOOL=glibtool --tag=CC'
|
2012-08-25 16:09:15 +00:00
|
|
|
system 'make install'
|
2010-02-17 22:04:48 +00:00
|
|
|
end
|
|
|
|
end
|