homebrew-core/Formula/boost-bcp.rb
Tanner Lovelace 31455c9c7a Boost bcp 2013.06-svn
Closes Homebrew/homebrew#20333.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-18 08:51:44 -07:00

19 lines
453 B
Ruby

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