blob: a9e9899f8cb06543d620a9b36da2fabb4d4e9171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Ack < Formula
url "https://github.com/petdance/ack/tarball/1.93_02"
md5 'b468ce41a949fd957dc9b6aee74782e9'
homepage 'http://betterthangrep.com/'
def install
bin.install 'ack'
(prefix+'etc/bash_completion.d').install 'etc/ack.bash_completion.sh'
end
end
|