lnav 0.5.0

Adds new formula for lnav, the Logfile Navigator, a curses-
based tool for viewing and analyzing log files.

Closes Homebrew/homebrew#21682.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
James Deaton 2013-08-05 15:50:51 -05:00 committed by Adam Vandenberg
parent be2b08c71e
commit d60a919ac9
1 changed files with 17 additions and 0 deletions

17
Formula/lnav.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Lnav < Formula
homepage 'http://tstack.github.io/lnav/'
url 'http://lnav.org/downloads/lnav-0.5.0.tar.bz2'
sha1 '8d68cb8b46878b2a54e9004a1f4994b07772b8b0'
head 'https://github.com/tstack/lnav.git'
depends_on 'readline'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end