2012-02-09 11:48:12 +00:00
|
|
|
class BoostBuild < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "C++ build system"
|
2016-04-17 19:42:27 +00:00
|
|
|
homepage "https://www.boost.org/build/"
|
2014-11-04 06:20:20 +00:00
|
|
|
url "https://github.com/boostorg/build/archive/2014.10.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "d143297d61e7c628fc40c6117d0df41cb40b33845376c331d7574f9a79b72b9f"
|
2012-02-09 11:48:12 +00:00
|
|
|
|
2014-11-04 06:20:20 +00:00
|
|
|
head "https://github.com/boostorg/build.git"
|
2012-02-09 11:48:12 +00:00
|
|
|
|
2014-10-22 14:41:51 +00:00
|
|
|
bottle do
|
2015-09-23 12:10:37 +00:00
|
|
|
cellar :any_skip_relocation
|
2016-09-28 17:42:35 +00:00
|
|
|
sha256 "d67cd7c3f2986f1e9def0583b8b5c13e3dce1eb8434acb873ea416973a99fbb4" => :sierra
|
2015-09-23 12:10:37 +00:00
|
|
|
sha256 "54e173a7e91aef66bfdb5c497156915518d69dd9a062552ab48e62d443adaa04" => :el_capitan
|
2015-11-19 15:45:31 +00:00
|
|
|
sha256 "a61eaa58a94a1f236d1dc6e652f7cb57e241e0dd5664bb5cadc258b73ce34887" => :yosemite
|
|
|
|
sha256 "dd11acd551a6c26f216743eeb938d704f92bc5349c79b5f8e853176e311b7990" => :mavericks
|
|
|
|
sha256 "03d989cecd3251825466d725f6a00212979b2d41fce344380606b482eaab9b80" => :mountain_lion
|
2014-10-22 14:41:51 +00:00
|
|
|
end
|
|
|
|
|
2016-10-23 11:19:19 +00:00
|
|
|
conflicts_with "b2-tools", :because => "both install `b2` binaries"
|
|
|
|
|
2012-02-09 11:48:12 +00:00
|
|
|
def install
|
2014-11-04 06:20:20 +00:00
|
|
|
system "./bootstrap.sh"
|
|
|
|
system "./b2", "--prefix=#{prefix}", "install"
|
2012-02-09 11:48:12 +00:00
|
|
|
end
|
|
|
|
end
|