2013-08-05 20:50:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lnav < Formula
|
2013-08-30 21:48:00 +00:00
|
|
|
homepage 'http://lnav.org'
|
2014-04-19 15:00:58 +00:00
|
|
|
url 'https://github.com/tstack/lnav/releases/download/v0.7.0/lnav-0.7.0.tar.gz'
|
|
|
|
sha1 '49334f3ffea752b9d7ce846757fc6ff78f123eb5'
|
2013-08-05 20:50:51 +00:00
|
|
|
|
|
|
|
head 'https://github.com/tstack/lnav.git'
|
|
|
|
|
|
|
|
depends_on 'readline'
|
2013-08-06 18:07:24 +00:00
|
|
|
depends_on 'pcre'
|
2013-08-05 20:50:51 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|