14 lines
225 B
Bash
Executable file
14 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
cd `dirname $0`
|
|
. ../env
|
|
|
|
name=boost_1_53_0
|
|
rm -rf $name
|
|
tar xzf $src/$name.tar.gz
|
|
cd $name
|
|
|
|
export PATH=$prefix/bin:$PATH
|
|
./bootstrap.sh \
|
|
--prefix=$prefix \
|
|
--with-python=$prefix/bin/python
|
|
./b2 install
|