2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-25 06:31:17 +00:00
|
|
|
|
|
|
|
class Ccache <Formula
|
2009-11-26 06:46:53 +00:00
|
|
|
url 'http://samba.org/ftp/ccache/ccache-2.4.tar.gz'
|
|
|
|
homepage 'http://ccache.samba.org/'
|
|
|
|
md5 '73c1ed1e767c1752dd0f548ec1e66ce7'
|
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"
|
|
|
|
end
|
|
|
|
end
|