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
|
2009-11-26 06:46:53 +00:00
|
|
|
homepage 'http://ccache.samba.org/'
|
2013-02-15 10:11:06 +00:00
|
|
|
url 'http://samba.org/ftp/ccache/ccache-3.1.9.tar.bz2'
|
|
|
|
sha1 'e80a5cb7301e72f675097246d722505ae56e3cd3'
|
2009-09-25 06:31:17 +00:00
|
|
|
|
2013-09-20 15:15:51 +00:00
|
|
|
head do
|
|
|
|
url 'https://github.com/jrosdahl/ccache.git'
|
2013-02-16 10:30:36 +00:00
|
|
|
|
|
|
|
depends_on :autoconf
|
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
|
|
|
end
|
|
|
|
|
2009-09-25 06:31:17 +00:00
|
|
|
def install
|
2013-02-16 10:30:36 +00:00
|
|
|
system './autogen.sh' if build.head?
|
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
|
|
|
|
|
|
|
libexec.mkpath
|
|
|
|
|
|
|
|
%w[
|
2013-06-17 19:33:27 +00:00
|
|
|
clang
|
|
|
|
clang++
|
2010-05-12 20:33:05 +00:00
|
|
|
cc
|
2013-06-17 19:33:27 +00:00
|
|
|
gcc gcc2 gcc3 gcc-3.3 gcc-4.0 gcc-4.2 gcc-4.3 gcc-4.4 gcc-4.5 gcc-4.6 gcc-4.7 gcc-4.8 gcc-4.9
|
|
|
|
c++ c++3 c++-3.3 c++-4.0 c++-4.2 c++-4.3 c++-4.4 c++-4.5 c++-4.6 c++-4.7 c++-4.8 c++-4.9
|
|
|
|
g++ g++2 g++3 g++-3.3 g++-4.0 g++-4.2 g++-4.3 g++-4.4 g++-4.5 g++-4.6 g++-4.7 g++-4.8 g++-4.9
|
2010-05-12 20:33:05 +00:00
|
|
|
].each do |prog|
|
2014-03-25 00:44:21 +00:00
|
|
|
libexec.install_symlink bin/"ccache" => prog
|
2010-05-12 20:33:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-04 03:19:16 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
To install symlinks for compilers that will automatically use
|
|
|
|
ccache, prepend this directory to your PATH:
|
2014-03-06 05:28:31 +00:00
|
|
|
#{opt_libexec}
|
2010-05-12 20:33:05 +00:00
|
|
|
|
2012-06-04 03:19:16 +00:00
|
|
|
If this is an upgrade and you have previously added the symlinks to
|
2013-06-18 23:30:16 +00:00
|
|
|
your PATH, you may need to modify it to the path specified above so
|
|
|
|
it points to the current version.
|
2011-01-20 10:51:13 +00:00
|
|
|
|
2012-06-04 03:19:16 +00:00
|
|
|
NOTE: ccache can prevent some software from compiling.
|
2013-06-18 23:30:16 +00:00
|
|
|
ALSO NOTE: The brew command, by design, will never use ccache.
|
2010-05-12 20:33:05 +00:00
|
|
|
EOS
|
2009-09-25 06:31:17 +00:00
|
|
|
end
|
|
|
|
end
|