niri/main.sh
ferreo 77fd55dac6
Some checks failed
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 2m38s
Initial packaging
2024-12-10 13:21:59 +00:00

29 lines
622 B
Bash
Executable File

#! /bin/bash
set -e
. ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
VERSION="0.1.10.1"
# Clone Upstream
git clone --recurse-submodules https://github.com/YaLTeR/niri.git -b v"$VERSION"
cp -rvf ./debian ./niri/
cd ./niri
# Get build deps
apt-get build-dep ./ -y
apt-get install curl -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
# Build package
LOGNAME=root dh_make --createorig -y -l -p niri_"$VERSION" || echo "dh-make: Ignoring Last Error"
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/