26 lines
685 B
Bash
26 lines
685 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
cd $1 || exit
|
||
|
cd tfclient || exit
|
||
|
|
||
|
echo "Building for release, v$2_$3 (+static) (--target x86_64-unknown-musl)"
|
||
|
cargo build --release --target x86_64-unknown-linux-musl
|
||
|
|
||
|
cd ../packages/void || exit
|
||
|
|
||
|
echo "Creating workdir"
|
||
|
rm -rf work
|
||
|
mkdir work
|
||
|
mkdir -p work/usr/bin
|
||
|
mkdir -p work/etc/sv
|
||
|
|
||
|
echo "Copying tfclient binary"
|
||
|
|
||
|
cp ../../target/release/tfclient work/usr/bin/tfclient
|
||
|
chmod 755 work/usr/bin/tfclient
|
||
|
cp -r tfclient work/etc/sv
|
||
|
|
||
|
echo "Building XBPS package"
|
||
|
|
||
|
xbps-create -A x86_64 -B trifid-build -H https://hub.e3t.cc/~core/trifid -l GPL-3.0-or-later -m "c0repwn3r <core@e3t.cc>" -n "tfclient-$2_$3" -s "An open-source Rust= Defined Networking client" work
|