aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ccache.rb
blob: d49a236cbee8874829973fe8c45ea253eb9b7cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Ccache <Formula
  url 'http://samba.org/ftp/ccache/ccache-2.4.tar.gz'
  homepage 'http://ccache.samba.org/'
  md5 '73c1ed1e767c1752dd0f548ec1e66ce7'

  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make"
    system "make install"
  end
end