Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 67 lines (49 sloc) 1.68 KB
#! /bin/bash
# COOKIE=$(mcookie|cut -c-8); grep -v V_GREP_ME $0 > /dev/shm/runme-$COOKIE.sh ; sleep 1; exec bash /dev/shm/runme-$COOKIE.sh
# TESTING=1
PKG=boost
VERSION=1.63.0
VERSION_USCORED=1_63_0
BUILD=0
PYTHONPKG=python-3.6.6-1
PREFIX=/pkg/$PKG-$VERSION-$BUILD
if [ -n "$TESTING" ]; then PREFIX=/dev/shm/$PKG-$VERSION-$BUILD ; fi
PATH=/bin:/usr/bin:/usr/sbin:/usr/local/bin
set -xe
umask 022
BUILD_TMPDIR=/dev/shm/$PKG-$VERSION-$BUILD.build.tmp
test -d $BUILD_TMPDIR && ( chmod -R u+rwx $BUILD_TMPDIR || true ; rm -rf $BUILD_TMPDIR )
mkdir -p $BUILD_TMPDIR/home
export TMPDIR=$BUILD_TMPDIR
export HOME=$BUILD_TMPDIR/home
exec </dev/null
mkdir -p $PREFIX
cat >$PREFIX/profile <<-EOF
if [ -d $PREFIX/.compatlibs ]; then export LD_LIBRARY_PATH=$PREFIX/.compatlibs\${LD_LIBRARY_PATH:+:}\$LD_LIBRARY_PATH ; fi
EOF
source $PREFIX/profile
B2FLAGS="-j $(($(nproc)*4/5+1))"
BUILDDIR=$PREFIX/build
mkdir -p $BUILDDIR
cd $BUILDDIR
test -e boost_$VERSION_USCORED.tar.gz || wget --no-verbose https://beehive.molgen.mpg.de/7b493c08bc9557bbde7e29091f28b605/boost_1_63_0.tar.gz
test -d boost_$VERSION_USCORED || tar -xf boost_$VERSION_USCORED.tar.gz
cd boost_$VERSION_USCORED
# since --with-python-version=3.Xm doesn't work,
# cram the right include into the jam file... (nerve)
sed -i -e '/^\s\+includes.*prefix.*include.*python/ s/python$(version)/python3.6m/' ./tools/build/src/tools/python.jam
./bootstrap.sh \
--prefix=${PREFIX} \
--with-python=/pkg/$PYTHONPKG/bin/python3
./b2 \
$B2FLAGS \
--prefix=$PREFIX \
--enable-shared \
--without-mpi \
install
# someday I'll find out how to set LDFLAGS in boost
cd $PREFIX/lib
for SO in *$VERSION ; do
patchelf --set-rpath $PREFIX/lib $SO
done
exit