alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

abuild (400B)


      1 name=boost
      2 version=1.89.0
      3 v=$(echo $version | sed 's/\./_/g')
      4 release=1
      5 source="https://archives.boost.io/release/${version}/source/boost_${v}.tar.gz"
      6 
      7 build() {
      8 	sed -i '/#include.*phoenix.*tuple.hpp.*/d' \
      9 	  boost/phoenix/stl.hpp
     10 	
     11 	./bootstrap.sh --prefix=/usr --with-python=python3
     12 	./b2 stage $MAKEFLAGS threading=multi link=shared
     13 	./b2 install --prefix=$PKG/usr threading=multi link=shared
     14 }