homebrew-core/Formula/jemalloc.rb
Stefan 53b8ddad8c jemalloc 3.5.0
Closes Homebrew/homebrew#26143.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-01-24 11:15:43 -06:00

15 lines
447 B
Ruby

require 'formula'
class Jemalloc < Formula
homepage 'http://www.canonware.com/jemalloc/download.html'
url 'http://www.canonware.com/download/jemalloc/jemalloc-3.5.0.tar.bz2'
sha1 '3c6aeed5adbd7267ec7db476f002051143a43ac0'
def install
system './configure', '--disable-debug', "--prefix=#{prefix}"
system 'make install'
# This otherwise conflicts with google-perftools
mv "#{bin}/pprof", "#{bin}/jemalloc-pprof"
end
end