homebrew-core/Formula/boost-build.rb

22 lines
516 B
Ruby
Raw Normal View History

require 'formula'
class BoostBuild < Formula
homepage 'http://boost.org/boost-build2/'
2014-03-17 16:12:54 +00:00
url 'https://github.com/boostorg/build/archive/boost-1.55.0.tar.gz'
sha1 '9daf7587b017716ffd164bcf11d82c4ac00c8ca0'
head 'https://github.com/boostorg/build.git'
def install
2012-08-23 04:35:07 +00:00
if build.head?
system "./bootstrap.sh"
system "./b2", "--prefix=#{prefix}", "install"
else
cd 'v2' do
system "./bootstrap.sh"
system "./b2", "--prefix=#{prefix}", "install"
end
end
end
end