homebrew-core/Formula/google-sparsehash.rb
Brett Koonce 22e22b0e39 sparsehash 2.0.2
project has dropped the google part of the name, should it be renamed?

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-17 19:39:37 -07:00

14 lines
411 B
Ruby

require 'formula'
class GoogleSparsehash < Formula
homepage 'http://code.google.com/p/google-sparsehash/'
url 'http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz'
sha1 '12c7552400b3e20464b3362286653fc17366643e'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make check"
system "make install"
end
end