aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ccache.rb
blob: 3045b74ddaea5c09510976b6d0a33f8b74a437ef (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}"
    system "make"
    system "make install"
  end
end