aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/grc.rb
blob: 0d474ccbd2c6a60010398d0e890ddce1c22e25d1 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require 'formula'

######################################################################### cook
class Grc <Formula
  @homepage='http://korpus.juls.savba.sk/~garabik/software/grc.html'
  @url='http://korpus.juls.savba.sk/~garabik/software/grc/grc_1.3.tar.gz'
  @md5='a4814dcee965c3ff67681f6b59e6378c'

  def install
    #TODO we should deprefixify since it's python and thus possible
    inreplace 'grc', '/etc', etc
    inreplace 'grc.1', '/etc', etc
    inreplace 'grcat', '/usr/local', prefix
    inreplace 'grcat.1', '/usr/local', prefix
    
    etc.install 'grc.conf'
    bin.install %w[grc grcat]
    (share+'grc').install Dir['conf.*']
    man1.install %w[grc.1 grcat.1]

    (etc+'grc.bashrc').write DATA.read rescue RuntimeError
  end

  def caveats
    <<-EOS
New shell sessions will start using GRC after you run the following command:

    echo 'source "`brew --prefix`/etc/grc.bashrc"' >> ~/.bashrc

    EOS
  end
end

__END__
GRC=`which grc`
if [ "$TERM" != dumb ] && [ -n GRC ]
then
    alias colourify="$GRC -es --colour=auto"
    alias configure='colourify ./configure'
    alias diff='colourify diff'
    alias make='colourify make'
    alias gcc='colourify gcc'
    alias g++='colourify g++'
    alias as='colourify as'
    alias gas='colourify gas'
    alias ld='colourify ld'
    alias netstat='colourify netstat'
    alias ping='colourify ping'
    alias traceroute='colourify /usr/sbin/traceroute'
fi