blob: d7e38b4ef71023360e7495f872a7f4eb01753d12 (
plain)
1 # Description: Free peer-reviewed portable C++ source libraries.
2 # URL: http://www.boost.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: icu python
5
6 name=boost
7 version=1.66.0
8 release=1
9 source=(https://dl.bintray.com/boostorg/release/$version/source/${name}_${version//./_}.tar.bz2)
10
11 build() {
12 cd ${name}_${version//./_}
13
14 ./bootstrap.sh --prefix=$PKG/usr --with-toolset=gcc --with-icu
15
16 ./b2 stage \
17 variant=release \
18 threading=multi \
19 runtime-link=shared \
20 link=shared,static \
21 debug-symbols=off \
22 -j ${JOBS-1}
23
24 ./b2 install threading=multi link=shared
25 }
|