2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2013-06-06 23:25:31 +00:00
|
|
|
class Ack < Formula
|
2013-04-20 11:44:05 +00:00
|
|
|
homepage 'http://beyondgrep.com/'
|
2013-09-27 16:59:01 +00:00
|
|
|
url 'http://beyondgrep.com/ack-2.10-single-file'
|
|
|
|
sha1 '6052cee5a4f580006fb9135e46411c5322c24a2a'
|
|
|
|
version '2.10'
|
2010-09-01 17:45:26 +00:00
|
|
|
|
|
|
|
def install
|
2013-09-27 16:59:01 +00:00
|
|
|
bin.install "ack-2.10-single-file" => "ack"
|
2013-04-20 11:44:05 +00:00
|
|
|
system "pod2man", "#{bin}/ack", "ack.1"
|
|
|
|
man1.install "ack.1"
|
2012-04-29 06:30:26 +00:00
|
|
|
end
|
2013-01-27 22:36:42 +00:00
|
|
|
|
|
|
|
test do
|
2013-09-27 18:17:31 +00:00
|
|
|
system "#{bin}/ack", '--version'
|
2013-01-27 22:36:42 +00:00
|
|
|
end
|
2009-09-22 19:10:17 +00:00
|
|
|
end
|