5d03afbfc9
Closes Homebrew/homebrew#24889. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
428 B
Ruby
16 lines
428 B
Ruby
require 'formula'
|
|
|
|
class Multitail < Formula
|
|
homepage 'http://www.vanheusden.com/multitail/download.html'
|
|
url 'http://www.vanheusden.com/multitail/multitail-6.0.tgz'
|
|
sha1 'fed0d3c5f03ff022f8f2ae90c0027312c3ff70ce'
|
|
|
|
def install
|
|
ENV['DESTDIR'] = prefix
|
|
system "make", "-f", "makefile.macosx", "multitail"
|
|
|
|
bin.install "multitail"
|
|
man1.install gzip("multitail.1")
|
|
etc.install "multitail.conf"
|
|
end
|
|
end
|