1SUMMARY="Makes it easy to build C++ projects, everywhere"
2DESCRIPTION="You name your executables and libraries and list their sources. \
3Boost.Build takes care about compiling your sources with right options, \
4creating static and shared libraries, making executables, and other chores ��� \
5whether you're using gcc, msvc, or a dozen more supported C++ compilers ��� on \
6Windows, OSX, Linux and commercial UNIX systems."
7HOMEPAGE="https://www.boost.org/build/index.html"
8COPYRIGHT="2006, 2014 Vladimir Prus"
9LICENSE="Boost v1.0"
10REVISION="1"
11SOURCE_URI="https://github.com/boostorg/build/archive/boost-$portVersion.tar.gz"
12CHECKSUM_SHA256="6630adb18e9fdddf354ce16ee7c358fa79aa0ae264da3b5604cbed6769ce84e5"
13SOURCE_DIR="build-boost-$portVersion"
14PATCHES="boost_build-$portVersion.patchset"
15
16ARCHITECTURES="all x86_gcc2"
17SECONDARY_ARCHITECTURES="x86"
18
19PROVIDES="
20	boost_build$secondaryArchSuffix
21	cmd:b2$secondaryArchSuffix
22	cmd:bjam$secondaryArchSuffix
23	"
24REQUIRES="
25	haiku$secondaryArchSuffix
26	"
27
28BUILD_REQUIRES="
29	haiku${secondaryArchSuffix}_devel
30	"
31BUILD_PREREQUIRES="
32	cmd:gcc$secondaryArchSuffix
33	"
34
35BUILD()
36{
37	export LIBS=-lbsd
38	sh bootstrap.sh
39}
40
41INSTALL()
42{
43	runConfigure ./b2 install
44}
45