aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/ccache.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ccache.rb b/Library/Formula/ccache.rb
new file mode 100644
index 000000000..25aa37faf
--- /dev/null
+++ b/Library/Formula/ccache.rb
@@ -0,0 +1,13 @@
+require 'brewkit'
+
+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