2024-08-13 17:22:25 +02:00
|
|
|
#! /bin/bash
|
2023-03-09 18:20:19 +01:00
|
|
|
|
2024-08-13 17:22:25 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
VERSION="46.4"
|
|
|
|
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
2023-06-26 23:31:01 +02:00
|
|
|
|
2023-03-09 18:20:19 +01:00
|
|
|
# Clone Upstream
|
2024-08-13 17:22:25 +02:00
|
|
|
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
|
2023-03-09 18:20:19 +01:00
|
|
|
|
2024-08-13 18:14:59 +02:00
|
|
|
# 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
|
|
|
|
|
2023-03-09 18:20:19 +01:00
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-08-13 17:22:25 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p mutter_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2023-06-26 23:17:01 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-09 18:20:19 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|