blob: 04012fb967d4b07bc9dad929fadcb6485103c003 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | class GoogleSparsehash < Formula
  homepage "https://code.google.com/p/google-sparsehash/"
  url "https://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz"
  sha1 "12c7552400b3e20464b3362286653fc17366643e"
  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"
    sha1 "bc2083e2c7e699c04f65a1d87dd0cb96deee9b24"
  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
 |