mirror of
https://git.suyu.dev/suyu/ext-linux-bin.git
synced 2025-12-21 21:36:01 +01:00
boost: New build script and 1.79.0 package
This commit is contained in:
parent
3828e16384
commit
9c6a458d86
4 changed files with 29 additions and 29 deletions
18
boost/build.sh
Executable file
18
boost/build.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
# 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_79_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
|
||||
Loading…
Add table
Add a link
Reference in a new issue