46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
class Lnav < Formula
|
|
desc "Curses-based tool for viewing and analyzing log files"
|
|
# lnav.org has an SSL issue: https://github.com/tstack/lnav/issues/401
|
|
homepage "https://github.com/tstack/lnav"
|
|
url "https://github.com/tstack/lnav/releases/download/v0.8.2/lnav-0.8.2.tar.gz"
|
|
sha256 "0f6a235aa3719f84067d510127730f5834a8874795494c9292c2f0de43db8c70"
|
|
|
|
bottle do
|
|
sha256 "6d10c74d64d4ea6ad0bf1e28feb03081164f6466984b18b1f35426c4b65ecf98" => :sierra
|
|
sha256 "a9517f28d9765a56c5012726e392ac577de272b7a7c5dc998b66d20873e56271" => :el_capitan
|
|
sha256 "d24c2db2e9a8954fb01326e458281699f1d8609bbdd99a0505967d5102aea0bc" => :yosemite
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/tstack/lnav.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "re2c" => :build
|
|
end
|
|
|
|
depends_on "readline"
|
|
depends_on "pcre"
|
|
depends_on "sqlite" if MacOS.version < :sierra
|
|
depends_on "curl" => ["with-libssh2", :optional]
|
|
|
|
def install
|
|
# Fix errors such as "use of undeclared identifier 'sqlite3_value_subtype'"
|
|
ENV.delete("SDKROOT")
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--with-readline=#{Formula["readline"].opt_prefix}
|
|
]
|
|
|
|
# macOS ships with libcurl by default, albeit without sftp support. If we
|
|
# want lnav to use the keg-only curl formula that we specify as a
|
|
# dependency, we need to pass in the path.
|
|
args << "--with-libcurl=#{Formula["curl"].opt_lib}" if build.with? "curl"
|
|
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
end
|