2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-25 06:31:17 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ccache < Formula
|
2011-01-20 10:51:13 +00:00
|
|
|
url 'http://samba.org/ftp/ccache/ccache-3.1.4.tar.bz2'
|
2009-11-26 06:46:53 +00:00
|
|
|
homepage 'http://ccache.samba.org/'
|
2011-01-20 10:51:13 +00:00
|
|
|
md5 '676fda8a9a5e02574435c32b22942abd'
|
2009-09-25 06:31:17 +00:00
|
|
|
|
|
|
|
def install
|
2010-02-20 02:00:11 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
2009-09-25 06:31:17 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2010-05-12 20:33:05 +00:00
|
|
|
|
|
|
|
# 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}
|
|
|
|
|
2011-01-20 10:51:13 +00:00
|
|
|
If this is an upgrade and you have previously added the symlinks to
|
|
|
|
your PATH, you will need to modify it to the path specified above so
|
|
|
|
it points to the new version.
|
|
|
|
|
2010-05-12 20:33:05 +00:00
|
|
|
NOTE: ccache can prevent some software from compiling.
|
|
|
|
EOS
|
2009-09-25 06:31:17 +00:00
|
|
|
end
|
|
|
|
end
|