homebrew-core/Formula/the_silver_searcher.rb
Geoff Greer 410438527c The Silver Searcher 0.13
Closes Homebrew/homebrew#15911.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-07 22:53:56 -08:00

33 lines
876 B
Ruby

require 'formula'
class TheSilverSearcher < Formula
homepage 'https://github.com/ggreer/the_silver_searcher'
url 'https://github.com/ggreer/the_silver_searcher/tarball/0.13'
sha1 '764cb9fa86f1df1627d86e679b19d5a561bf20d3'
head 'https://github.com/ggreer/the_silver_searcher.git'
depends_on :automake
depends_on :autoconf
depends_on 'pkg-config' => :build
depends_on 'pcre'
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-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
def test
system "#{bin}/ag", "--version"
end
end