]> git.lyx.org Git - lyx.git/blob - 3rdparty/boost/extract.sh
Fix boost packaging
[lyx.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/signals2.hpp \
30         boost/signals2/connection.hpp \
31         boost/signals2/trackable.hpp \
32         \
33         needed
34
35
36 # we do not use the provided MSVC project files
37 find needed -name '*.vcpro*' | xargs rm
38
39 find boost -name \*.hpp | xargs rm
40 find libs  -name \*.cpp | xargs rm
41
42 cp -vR needed/boost .
43 cp -vR needed/libs .
44
45 rm -rf needed
46
47 # found by bcp but not needed by us
48 rm -rf boost/regex/icu.hpp
49 rm -rf boost/typeof
50 rm -rf libs/config
51 rm -rf libs/smart_ptr
52 rm -rf libs/regex/build
53 rm -rf libs/regex/test
54 rm -rf libs/regex/src/icu.cpp
55