homebrew-core/Formula/jemalloc.rb
Pieter Noordhuis e6a133a49c jemalloc 2.1.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-13 09:39:46 -07:00

12 lines
337 B
Ruby

require 'formula'
class Jemalloc < Formula
url 'http://www.canonware.com/download/jemalloc/jemalloc-2.1.1.tar.bz2'
homepage 'http://www.canonware.com/jemalloc/download.html'
md5 'a10d04be00bac06ac27e6a1a4b2008f6'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
end
end