smlinux/base/boost/boost.SMBuild
PktSurf 1ddfe9abba * Fixed indentation in base/docbook build file
* Replaced patch command with applypatch function in multiple build files in base, xorg, gtk, extra and xfce sections
2022-02-23 23:21:55 +05:30

36 lines
1 KiB
Text
Executable file

app=boost
version=1_69_0
build=1sml
homepage='https://www.boost.org/'
requires="bzip2 zlib findutils python3 icu xz"
desc="Huge collection of free peer-reviewed portable C++ source libraries"
build() {
mkandenterbuilddir
rm -rf "$app"_"$version"
tar xf $srcdir/"$app"_"$version".tar.?z*
cd "$app"_"$version"
chown -R root.root .
applypatch $srcdir/boost-execinfo.patch
unset CXX
# Also symlink <toolchain>-gcc-6.3.0 to gcc-6.3.0 and <toolchain>-g++ to g++-6.3.0
CC="$CC" \
./bootstrap.sh \
--prefix="$pkg" \
./b2 -j3 toolset=gcc-foo -d+2 stage threading=multi link=shared || true
./b2 -j3 -d+2 install threading=multi link=shared || true
cp LICENSE_1_0.txt $pkgdocs/LICENSE
mkfinalpkg
}
sha512sums="
d0e9bb858c44880d56c0291afef6a1b011a62f659a2d8f58dcb6147ea0899f9157bd8db3097896618fee0116847ebeac78b6d0f0fec8a92c3469500828bbe552 boost_1_69_0.tar.bz2
16d8d072adb9073f240e3f7ff73591d3867681c4ba47f6f9f7d064e367b45a97e1f757ff01e489d0d834382670f9e9658755754d0e0dce62b08e6045c1f8605a boost-execinfo.patch
"