2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2010-09-01 17:45:26 +00:00
|
|
|
class AckCompletion < Formula
|
|
|
|
url 'http://github.com/petdance/ack/raw/68120b5d30150e805c033d0458df89a487aa66c5/etc/ack.bash_completion.sh'
|
|
|
|
md5 '22e3f388b4fe2b05841ec46b4e1d61b7'
|
|
|
|
version '1.92'
|
|
|
|
end
|
|
|
|
|
|
|
|
class Ack < Formula
|
2010-06-11 07:07:47 +00:00
|
|
|
url "http://github.com/petdance/ack/raw/079b049b7240c2960a8ff811b2857eba462ad803/ack"
|
2010-04-07 05:58:35 +00:00
|
|
|
version '1.92'
|
2010-06-11 07:07:47 +00:00
|
|
|
md5 '7db577145ceba9f6cc5fddc3e8198342'
|
2009-09-28 15:22:07 +00:00
|
|
|
homepage 'http://betterthangrep.com/'
|
2010-09-01 17:45:26 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install Dir['*']
|
|
|
|
AckCompletion.new.brew { (prefix+'etc/bash_completion.d').install Dir['*'] }
|
|
|
|
end
|
2009-09-22 19:10:17 +00:00
|
|
|
end
|