blob: fc7482749aec392654b5367309950f22e63a7acb (
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
|
require 'formula'
class Ccache <Formula
url 'http://samba.org/ftp/ccache/ccache-3.1.tar.bz2'
homepage 'http://ccache.samba.org/'
md5 '7961852e1e36f11559039c32142f58df'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make install"
# Install symlinks for a variety of compilers into
# #{libexec}/ccache. Prepending this directory to your
# PATH should automatically activate ccache for most compiles.
ohai "Creating symbolic links"
libexec.mkpath
%w[
cc
gcc gcc2 gcc3 gcc-3.3 gcc-4.0
c++ c++3 c++-3.3 c++-4.0
g++ g++2 g++3 g++-3.3 g++-4.0
].each do |prog|
ln_s bin+"ccache", libexec + prog
end
end
def caveats
<<-EOS
To install symlinks for compilers that will automatically use
ccache, add this folder to the front of your PATH:
#{libexec}
NOTE: ccache can prevent some software from compiling.
EOS
end
end
|