homebrew-core/Formula/lnav.rb

19 lines
451 B
Ruby
Raw Normal View History

require 'formula'
class Lnav < Formula
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'
head 'https://github.com/tstack/lnav.git'
depends_on 'readline'
2013-08-06 18:07:24 +00:00
depends_on 'pcre'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end