homebrew-core/Formula/jemalloc.rb
Austin Seipp 4da16d6e33 jemalloc 2.2.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-15 13:52:34 -07:00

12 lines
337 B
Ruby

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