summaryrefslogtreecommitdiff
path: root/boost/Pkgfile
blob: 01fd8f80b51ed9f025f9516c646976df55dcb51b (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.65.1
    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 }

Generated by cgit