cosmic-comp/main.sh

30 lines
904 B
Bash
Raw Normal View History

2024-08-04 16:10:14 +02:00
#! /bin/bash
set -e
. ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
2024-08-04 16:10:42 +02:00
VERSION="0.1"
2024-08-04 16:10:14 +02:00
# Clone Upstream
2024-09-13 19:21:02 +02:00
git clone https://github.com/pop-os/cosmic-comp.git -b drm-syncobj
2024-08-04 16:10:42 +02:00
cd cosmic-comp
2024-08-04 16:10:14 +02:00
2024-08-04 18:04:30 +02:00
sed -i '/^\s*\(cargo\|rustc\|rust-all\)\s*\(([^)]*)\)\?\s*,\?$/d; s/,\s*\(cargo\|rustc\|rust-all\)\s*\(([^)]*)\)\?\s*,\?//g' ./debian/control
sed -i '2iexport PATH := $(shell . /root/.cargo/env && echo $$PATH)\nexport $(shell . /root/.cargo/env && env | grep "^CARGO_\|^RUSTUP_" | sed "s/=/:=/")\n' ./debian/rules
2024-08-04 16:10:14 +02:00
# Get build deps
apt-get build-dep ./ -y
2024-08-04 16:54:23 +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-04 16:10:14 +02:00
2024-08-04 16:54:23 +02:00
LOGNAME=root dh_make --createorig -y -l -p cosmic-comp_"$VERSION" || echo "dh-make: Ignoring Last Error"
2024-08-04 16:10:14 +02:00
# Build package
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/