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

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

  def install
    system "./configure", "--disable-debug", "--prefix=#{prefix}"
    system "make install"
  end
end