homebrew-core/Formula/google-sparsehash.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

30 lines
1.2 KiB
Ruby

class GoogleSparsehash < Formula
desc "Extremely memory-efficient hash_map implementation"
homepage "https://code.google.com/p/google-sparsehash/"
url "https://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz"
sha256 "2ed639a7155607c097c2029af5f4287296595080b2e5dd2e2ebd9bbb7450b87c"
bottle do
cellar :any
sha1 "b69142883864c3a93e55670fbf0e04ae87d9aaf1" => :yosemite
sha1 "3847a9017f9962b3df7ccfbb89ebf38d1c853e24" => :mavericks
sha1 "a9a03d28f355310965005ab055e02f1df411b93e" => :mountain_lion
end
option :cxx11
option "without-check", "Skip build-time tests (not recommended)"
# Patch from upstream issue: https://code.google.com/p/sparsehash/issues/detail?id=99
patch do
url "https://gist.githubusercontent.com/jacknagel/3314c8cc67032a912f8b/raw/387b44a3b46e7b68876dbcb3c6595d700fa08a3c/sparsehash.diff"
sha256 "c12f68278bce1ebf893ffa791e43df7f09e5452db3fbd13bd30fcf91cbf6ad36"
end
def install
ENV.cxx11 if build.cxx11?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "check" if build.with? "check"
system "make", "install"
end
end