2011-02-03 13:45:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Jemalloc < Formula
|
|
|
|
homepage 'http://www.canonware.com/jemalloc/download.html'
|
2013-06-15 15:30:52 +00:00
|
|
|
url 'http://www.canonware.com/download/jemalloc/jemalloc-3.4.0.tar.bz2'
|
|
|
|
sha1 '06f572f1cc6a4e4a68c7f9a354f12e17ba32f70b'
|
2011-02-03 13:45:34 +00:00
|
|
|
|
|
|
|
def install
|
2012-11-25 19:08:19 +00:00
|
|
|
system './configure', '--disable-debug', "--prefix=#{prefix}"
|
|
|
|
system 'make install'
|
|
|
|
|
|
|
|
# This otherwise conflicts with google-perftools
|
|
|
|
mv "#{bin}/pprof", "#{bin}/jemalloc-pprof"
|
2011-02-03 13:45:34 +00:00
|
|
|
end
|
|
|
|
end
|