pika-welcome/main.sh

29 lines
593 B
Bash
Raw Permalink Normal View History

2024-07-31 01:06:08 +02:00
#! /bin/bash
set -e
VERSION="5.0.0"
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
2024-02-18 13:11:52 +01:00
# Clone Upstream
2024-07-31 01:06:08 +02:00
mkdir -p pika-welcome
cp -rvf ./* ./pika-welcome/ || true
cd ./pika-welcome/
2024-02-18 13:11:52 +01:00
# Get build deps
apt-get build-dep ./ -y
2024-02-20 21:41:42 +01:00
apt-get install curl -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
2024-02-18 13:11:52 +01:00
# Build package
2024-07-31 01:06:08 +02:00
LOGNAME=root dh_make --createorig -y -l -p pika-welcome_"$VERSION" || echo "dh-make: Ignoring Last Error"
2024-02-18 13:11:52 +01:00
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/