2024-08-25 15:10:27 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2024-08-25 15:11:26 +02:00
|
|
|
VERSION="0.1"
|
2024-08-25 15:10:27 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-08-25 15:11:26 +02:00
|
|
|
git clone https://github.com/Jappie3/wayfreeze.git
|
|
|
|
cp -rvf ./debian ./wayfreeze/
|
|
|
|
cd ./wayfreeze/
|
2024-08-25 15:10:27 +02:00
|
|
|
|
|
|
|
# Get build deps
|
2024-08-25 15:11:26 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p wayfreeze_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-08-25 15:10:27 +02:00
|
|
|
apt-get build-dep ./ -y
|
2024-08-25 15:25:19 +02:00
|
|
|
apt-get install curl -y
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
|
2024-08-25 15:10:27 +02:00
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|