47 lines
1.4 KiB
Ruby
47 lines
1.4 KiB
Ruby
class TheSilverSearcher < Formula
|
|
desc "Code-search similar to ack"
|
|
homepage "https://github.com/ggreer/the_silver_searcher"
|
|
url "https://github.com/ggreer/the_silver_searcher/archive/1.0.2.tar.gz"
|
|
sha256 "4cb73a4436fccf2c2cae91479a0167bacaa968a4deca28f3ff9d5abd98f01009"
|
|
head "https://github.com/ggreer/the_silver_searcher.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "ee96a49318df08722fe5e83e5a57ccc283ac053a397f7b9809373d349294f64f" => :sierra
|
|
sha256 "ec8149718da56dc6dab3d89e4982bf310f626ff2e3d716ab4b1953a593fe1d84" => :el_capitan
|
|
sha256 "680ce1c7267e326782e6cd06dbc09ff18c8274145f40b2f5a05bb93692381fff" => :yosemite
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pcre"
|
|
depends_on "xz" => :recommended
|
|
|
|
def install
|
|
# Stable tarball does not include pre-generated configure script
|
|
system "aclocal", "-I #{HOMEBREW_PREFIX}/share/aclocal"
|
|
system "autoconf"
|
|
system "autoheader"
|
|
system "automake", "--add-missing"
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
args << "--disable-lzma" if build.without?("xz")
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
bash_completion.install "ag.bashcomp.sh"
|
|
end
|
|
|
|
test do
|
|
(testpath/"Hello.txt").write("Hello World!")
|
|
system "#{bin}/ag", "Hello World!", testpath
|
|
end
|
|
end
|