aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ccache.rb
blob: 5a6adf36b3c69ec247bd19614a22cc6c2377d8f4 (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