blob: 3d46726fd5dd508398df7131e9f901e52cb98e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require 'formula'
class TheSilverSearcher < Formula
homepage 'https://github.com/ggreer/the_silver_searcher'
head 'https://github.com/ggreer/the_silver_searcher.git'
url 'https://github.com/ggreer/the_silver_searcher/archive/0.18.tar.gz'
sha1 '43c399f5add3921b4fcb7c7f3d21909d81cd0559'
depends_on :automake
depends_on :autoconf
depends_on 'pkg-config' => :build
depends_on 'pcre'
depends_on 'xz'
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"
bash_completion.install 'ag.bashcomp.sh'
end
def test
system "#{bin}/ag", "--version"
end
end
|