Added Linux binaries

This commit is contained in:
Jarrod Norwell
2024-03-23 19:47:04 +08:00
parent 6a5e8a53d8
commit bd95c8ea5d
44 changed files with 576 additions and 0 deletions

BIN
boost/boost-1_79_0.tar.xz Normal file

Binary file not shown.

BIN
boost/boost-1_81_0.tar.xz Normal file

Binary file not shown.

BIN
boost/boost_1_75_0.tar.xz Normal file

Binary file not shown.

18
boost/build.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
set -e
# This script is meant to make it easy to build a package using a Docker container.
# Run this from the same directory as source directory
THIS=$(readlink -e $0)
USER_ID=`id -u`
GROUP_ID=`id -g`
VERSION=1_81_0
PKG_NAME=boost
mkdir -p $PKG_NAME-$VERSION
docker run -v $(pwd):/src -w /src -u root -t yuzuemu/build-environments:linux-fresh /bin/bash -ex /src/docker.sh $PKG_NAME $VERSION
cp -v $THIS $PKG_NAME-$VERSION/
tar cv $PKG_NAME-$VERSION | xz -T0 -c > $PKG_NAME-$VERSION.tar.xz

12
boost/docker.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
THIS=$(readlink -e $0)
PKG_NAME=$1
VERSION=$2
cd /src/${PKG_NAME}_${VERSION}
/bin/bash /src/${PKG_NAME}_${VERSION}/bootstrap.sh
./b2 --prefix=/src/${PKG_NAME}-${VERSION}/usr/local install
cp $THIS /src/${PKG_NAME}-${VERSION}