blob: d45eac52ef19d0af11fe07d9669e7a12e165831e (
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 BoostBcp < Formula
  homepage "http://www.boost.org/doc/tools/bcp/"
  url "https://downloads.sourceforge.net/project/boost/boost/1.57.0/boost_1_57_0.tar.bz2"
  sha1 "e151557ae47afd1b43dc3fac46f8b04a8fe51c12"
  head "http://svn.boost.org/svn/boost/trunk/"
  bottle do
    cellar :any
    sha1 "a43b921395070e10dd093ea1dcdced6013479a0c" => :yosemite
    sha1 "9ce5c7870fdf63caa0677e7cfd666755707bb9bf" => :mavericks
    sha1 "eb29007192552cd6149a8e1fecaf28d49edf6d5f" => :mountain_lion
  end
  depends_on "boost-build" => :build
  def install
    cd "tools/bcp" do
      system "b2"
      prefix.install "../../dist/bin"
    end
  end
end
 |