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

class Jemalloc < Formula
  url 'http://www.canonware.com/download/jemalloc/jemalloc-2.2.2.tar.bz2'
  homepage 'http://www.canonware.com/jemalloc/download.html'
  md5 '65b2b3f68c9d229246a67f5a4d29ba83'

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