mutter/main.sh
Ward from fusion-voyager-3 f3230b11c5
Some checks failed
PikaOS Package Build Only (amd64-v3) / build (push) Failing after 1m23s
attempt to fix xwayland frac scale: 1
2024-08-13 12:20:06 -04:00

32 lines
807 B
Bash
Executable File

#! /bin/bash
set -e
VERSION="46.4"
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
# Clone Upstream
git clone --depth=1 https://gitlab.gnome.org/GNOME/mutter -b "$VERSION"
cp -rvf ./debian ./mutter
cd ./mutter
for i in $(cat ../patches/series) ; do echo "Applying Patch: $i" && patch -Np1 -i ../patches/$i || echo "Applying Patch $i Failed!"; done
# TEMP FIX TILL FERREO CLEAN DOCKER
apt-get install -y gir1.2-gtk-4.0=4.14.4+ds-8 libgtk-4-1=4.14.4+ds-8 gir1.2-adw-1=1.5.3-1 libadwaita-1-0=1.5.3-1 --allow-downgrades
# Get build deps
apt-get build-dep ./ -y
# Build package
LOGNAME=root dh_make --createorig -y -l -p mutter_"$VERSION" || echo "dh-make: Ignoring Last Error"
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/