mutter/main.sh

29 lines
638 B
Bash
Raw Normal View History

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 18:52:40 +02:00
git clone --depth=1 https://gitlab.gnome.org/GNOME/mutter -b "$VERSION"
2024-08-13 17:22:25 +02:00
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
# 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/