2013-08-13 19:29:45 +00:00
|
|
|
class Dmalloc < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Debug versions of system memory management routines"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://dmalloc.com"
|
|
|
|
url "http://dmalloc.com/releases/dmalloc-5.5.2.tgz"
|
|
|
|
sha256 "d3be5c6eec24950cb3bd67dbfbcdf036f1278fae5fd78655ef8cdf9e911e428a"
|
2013-08-13 19:29:45 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--enable-threads", "--prefix=#{prefix}"
|
|
|
|
system "make", "install", "installth", "installcxx", "installthcxx"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/dmalloc", "-b", "runtime"
|
|
|
|
end
|
|
|
|
end
|