blob: a94fcf4f8407939bd644fc48e9099bf4c876324a (
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
 | require "formula"
class Libstxxl < Formula
  homepage "http://stxxl.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/stxxl/stxxl/1.4.1/stxxl-1.4.1.tar.gz"
  sha1 "cb29de8d33c7603734fa86215723da676a51dbf1"
  bottle do
    cellar :any
    sha1 "2e9e956e2b3500e526a119b980c2854535d5edb0" => :yosemite
    sha1 "50fcd3bca1975e47922a986e7fba52e24e49ae55" => :mavericks
    sha1 "1d54cfe7453bc91b00dfefbe23839a61e376d6c5" => :mountain_lion
  end
  depends_on "cmake" => :build
  def install
    args = std_cmake_args - %w{-DCMAKE_BUILD_TYPE=None}
    args << "-DCMAKE_BUILD_TYPE=Release"
    mkdir "build" do
      system "cmake", "..", *args
      system "make", "install"
    end
  end
end
 |