homebrew-core/Formula/ccache.rb
Martin Kuehl 6c0b813f15 ccache - Install man pages in the correct path
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-20 16:14:06 -08:00

13 lines
309 B
Ruby

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