2023-08-08 18:49:33 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
2023-08-08 18:36:56 +02:00
|
|
|
# Clone Upstream
|
2024-02-27 14:38:15 +01:00
|
|
|
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-24.0.1
|
2023-08-08 18:36:56 +02:00
|
|
|
cp -rvf ./debian ./mesa/
|
|
|
|
cd ./mesa
|
2023-10-05 22:15:36 +02:00
|
|
|
for i in $(cat ../patches/series) ; do echo "Applying Patch: $i" && patch -Np1 -i ../patches/$i || bash -c "echo "Applying Patch $i Failed!" && exit 2"; done
|
2023-08-09 14:14:09 +02:00
|
|
|
sed -i ' 1 s/.*/& - PikaOS YellowBirb Mesa Stable/' ./VERSION
|
2023-08-08 18:36:56 +02:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|