Skip to content

boost: update to 1.72.0 #1627

Merged
merged 2 commits into from
Jan 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 5 additions & 9 deletions boost.be0
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
#!/bin/env beesh

# BEE_VERSION boost-1.63.0-2
# BEE_VERSION boost-1.72.0-0

SRCURL[0]="https://downloads.sourceforge.net/project/boost/boost/${PKGVERSION}/boost_${PKGVERSION//./_}.tar.bz2"
SRCURL[0]="https://beehive.molgen.mpg.de/e2b0b1eac302880461bcbef097171758/boost_1_72_0.tar.gz"

PATCHURL[0]=""

eval set -- "$( beegetopt -n option -o j= -- $BEE_MAKEFLAGS )"
[ $1 = '-j' ] && BEE_BJAMFLAGS="-j $2"

mee_configure() {
cd ${S}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should have build_in_sourcedir for that now.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

build_in_sourcedir symlinks $B to $S . Later on you will find --build-dir=${B}.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

start_cmd ${S}/bootstrap.sh \
--prefix=${PREFIX} \
--libdir=${LIBDIR}
--libdir=${LIBDIR} \
--with-libraries=headers
}

mee_install() {
cd ${S}
start_cmd ${S}/bjam \
start_cmd ${S}/b2 \
--prefix=${D}${PREFIX} \
--build-dir=${B} \
--without-mpi \
${BEE_BJAMFLAGS} \
install
}