aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/boost-bcp.rb
blob: c8057d5a5220417690b45cca6148b64f345e245a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class BoostBcp < Formula
  homepage 'http://www.boost.org/doc/tools/bcp/'
  url 'http://downloads.sourceforge.net/project/boost/boost/1.53.0/boost_1_53_0.tar.bz2'
  version '2013.06-svn'
  sha1 'e6dd1b62ceed0a51add3dda6f3fc3ce0f636a7f3'

  head 'http://svn.boost.org/svn/boost/trunk/'

  depends_on 'boost-build' => :build

  def install
    cd 'tools/bcp' do
      system "b2"
      prefix.install "../../dist/bin"
    end
  end
end