aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jemalloc.rb
blob: 84a8d221224348eb5582ac4bdcfb0be733e92e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Jemalloc < Formula
  homepage 'http://www.canonware.com/jemalloc/download.html'
  url 'http://www.canonware.com/download/jemalloc/jemalloc-3.2.0.tar.bz2'
  sha1 'e5204872e74d3ee75eaa51c6dc39731d611883f3'

  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