contrib/boost/Pkgfile

28 lines
659 B
Plaintext
Raw Normal View History

# Description: Free peer-reviewed portable C++ source libraries.
2007-12-16 07:56:50 +01:00
# URL: http://www.boost.org/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2018-11-10 12:47:00 +01:00
# Depends on: python
# Optional: icu
name=boost
2020-05-12 14:50:02 +02:00
version=1.73.0
2012-10-20 07:21:33 +02:00
release=1
2017-12-24 09:39:56 +01:00
source=(https://dl.bintray.com/boostorg/release/$version/source/${name}_${version//./_}.tar.bz2)
build() {
2010-11-13 05:04:55 +01:00
cd ${name}_${version//./_}
2007-07-22 14:46:23 +02:00
2018-11-10 12:47:00 +01:00
local ICU=$([ -e /usr/bin/icu-config ] && echo --with-icu)
./bootstrap.sh --prefix=$PKG/usr --with-toolset=gcc $ICU
2016-12-29 00:37:57 +01:00
./b2 stage \
variant=release \
threading=multi \
runtime-link=shared \
link=shared,static \
debug-symbols=off \
2017-12-24 09:39:56 +01:00
-j ${JOBS-1}
2016-12-29 00:37:57 +01:00
2015-01-31 02:58:54 +01:00
./b2 install threading=multi link=shared
}