|
|
@ -25,14 +25,15 @@ yam_cm () |
|
|
|
( cd boost/regex/v4; |
|
|
|
unzip -o $archdir/boost-1.31.0-regex-patch-20040503.zip; ) |
|
|
|
|
|
|
|
bjam "-sTOOLS=gcc" |
|
|
|
PYVER="`python -V 2>&1 | sed 's/Python \([0-9]\.[0-9]\).*/\1/'`" |
|
|
|
PYTHON_ROOT="$root/$prefix" PYTHON_VERSION="$PYVER" bjam "-sTOOLS=gcc" |
|
|
|
|
|
|
|
find libs/ -type f -a \( -name '*.so.*' -o -name '*.a' \) \ |
|
|
|
find bin/boost/libs/ -type f -a \( -name '*.so.*' -o -name '*.a' \) \ |
|
|
|
-exec cp -v \{\} $libdir \; |
|
|
|
|
|
|
|
find boost/ -type f | while read file ; do |
|
|
|
mkdir -p $includedir/`dirname $file` |
|
|
|
cp $file $includedir/$file |
|
|
|
mkdir -v -p $includedir/`dirname $file` |
|
|
|
cp -v $file $includedir/$file |
|
|
|
done |
|
|
|
} |
|
|
|
|
|
|
|