2010-02-11 18:43:39 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Multitail < Formula
|
2011-10-23 23:01:16 +00:00
|
|
|
url 'http://www.vanheusden.com/multitail/multitail-5.2.8.tgz'
|
2010-02-11 18:43:39 +00:00
|
|
|
homepage 'http://www.vanheusden.com/multitail/download.html'
|
2011-10-23 23:01:16 +00:00
|
|
|
md5 'aaa3691b0ea66ef02ffefd628c7dee8b'
|
2010-02-11 18:43:39 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "env", "DESTDIR=#{prefix}", "make", "-f", "makefile.macosx", "multitail"
|
|
|
|
|
|
|
|
bin.install "multitail"
|
|
|
|
man1.install gzip("multitail.1")
|
2010-04-18 06:10:20 +00:00
|
|
|
etc.install "multitail.conf"
|
2010-02-11 18:43:39 +00:00
|
|
|
end
|
|
|
|
end
|