15 lines
430 B
Ruby
15 lines
430 B
Ruby
require 'formula'
|
|
|
|
class Multitail < Formula
|
|
homepage 'http://www.vanheusden.com/multitail/download.html'
|
|
url 'http://www.vanheusden.com/multitail/multitail-5.2.9.tgz'
|
|
sha1 '66b2d603ca8f053b43419046a3cbbba8e470c24b'
|
|
|
|
def install
|
|
system "env", "DESTDIR=#{prefix}", "make", "-f", "makefile.macosx", "multitail"
|
|
|
|
bin.install "multitail"
|
|
man1.install gzip("multitail.1")
|
|
etc.install "multitail.conf"
|
|
end
|
|
end
|