prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
36 lines
1 KiB
Text
Executable file
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 .
|
|
|
|
patch -p1 < $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
|
|
"
|