niri/main.sh

29 lines
622 B
Bash
Raw Normal View History

2024-12-10 14:13:44 +01:00
#! /bin/bash
set -e
. ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
2024-12-10 14:21:59 +01:00
VERSION="0.1.10.1"
2024-12-10 14:13:44 +01:00
# Clone Upstream
2024-12-10 14:21:59 +01:00
git clone --recurse-submodules https://github.com/YaLTeR/niri.git -b v"$VERSION"
cp -rvf ./debian ./niri/
cd ./niri
2024-12-10 14:13:44 +01:00
# Get build deps
apt-get build-dep ./ -y
2024-12-10 14:21:59 +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-12-10 14:13:44 +01:00
# Build package
2024-12-10 14:21:59 +01:00
LOGNAME=root dh_make --createorig -y -l -p niri_"$VERSION" || echo "dh-make: Ignoring Last Error"
2024-12-10 14:13:44 +01:00
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/