homebrew-core/Formula/ack.rb

20 lines
491 B
Ruby
Raw Normal View History

require 'formula'
class Ack < Formula
2013-01-26 22:01:15 +00:00
homepage 'http://betterthangrep.com/'
2013-03-15 22:19:52 +00:00
url 'https://github.com/petdance/ack/archive/1.96.tar.gz'
sha1 '5d53b2b6f285e222a8459730495d6b07c692edd6'
def install
2013-01-27 22:36:42 +00:00
system 'pod2man', 'ack', 'ack.1'
man1.install 'ack.1'
2010-11-07 19:19:58 +00:00
bin.install 'ack'
bash_completion.install 'etc/ack.bash_completion.sh'
zsh_completion.install 'etc/ack.zsh_completion' => '_ack'
end
2013-01-27 22:36:42 +00:00
test do
system "#{bin}/ack", 'brew', '/usr/share/dict/words'
end
2009-09-22 19:10:17 +00:00
end