mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
27 lines
643 B
Plaintext
27 lines
643 B
Plaintext
DESCRIPTION="boost"
|
|
HOMEPAGE="http://www.boost.org/"
|
|
SRC_URI="http://sourceforge.net/projects/boost/files/boost/1.42.0/boost_1_42_0.tar.bz2/download"
|
|
CHECKSUM_MD5="7bf3b4eb841b62ffb0ade2b82218ebe6"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
MESSAGE="This port only builds with gcc4. Use 'setgcc gcc4' before building."
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd boost_1_42_0
|
|
./bootstrap.sh --prefix=`finddir B_COMMON_DIRECTORY`
|
|
./bjam --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--libdir=/boot/common/lib \
|
|
--includedir=/boot/common/include \
|
|
variant=release \
|
|
link=shared \
|
|
threading=single \
|
|
runtime-link=shared
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd boost_1_42_0
|
|
./bjam install
|
|
}
|