b7ca5271d0
Closes Homebrew/homebrew#19514. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
33 lines
871 B
Ruby
33 lines
871 B
Ruby
require 'formula'
|
|
|
|
class TheSilverSearcher < Formula
|
|
homepage 'https://github.com/ggreer/the_silver_searcher'
|
|
url 'https://github.com/ggreer/the_silver_searcher/archive/0.14.tar.gz'
|
|
sha1 '88272485c3cee363ca13a09dfd8380f1e786afb3'
|
|
|
|
head 'https://github.com/ggreer/the_silver_searcher.git'
|
|
|
|
depends_on :automake
|
|
depends_on :autoconf
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'pcre'
|
|
depends_on 'xz' if build.head?
|
|
|
|
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"
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/ag", "--version"
|
|
end
|
|
end
|