]> git.lyx.org Git - features.git/blob - 3rdparty/boost/extract.sh
Replace boost::tuple with std::tuple
[features.git] / 3rdparty / boost / extract.sh
1 #!/bin/bash
2
3 #
4 # Script to extract only needed boost files using the bcp tool:
5 #
6 # http://www.boost.org/doc/libs/1_47_0/tools/bcp/doc/html/index.html
7 #
8 # Does also work with an outdated bcp version 
9 #
10 # Usage: extract.sh <path to new boost version>
11 #
12
13 if [ -z $1 ]
14 then
15     echo "Usage: extract.sh <path to new boost version>"
16     exit 1
17 fi
18
19 rm -rf needed
20 mkdir needed
21
22 bcp --boost=$1 \
23         boost/any.hpp \
24         boost/assert.hpp \
25         boost/crc.hpp \
26         boost/cstdint.hpp \
27         boost/lexical_cast.hpp \
28         boost/regex.hpp \
29         boost/signal.hpp \
30         boost/signals/connection.hpp \
31         boost/signals/trackable.hpp \
32         \
33         needed
34
35
36 # work around bcp pulling in too much:
37 rm -rf needed/boost/typeof
38
39 # we do not use the provided MSVC project files
40 find needed -name '*.vcpro*' | xargs rm
41
42 find boost -name \*.hpp | xargs rm
43 find libs  -name \*.cpp | xargs rm
44
45 cp -vR needed/boost .
46 cp -vR needed/libs .
47
48 rm -rf needed
49
50 # found by bcp but not needed by us
51 rm -rf libs/config
52 rm -rf libs/smart_ptr
53 rm -rf libs/signals/build
54 rm -rf libs/regex/build
55 rm -rf libs/regex/test
56
57
58