2023-03-09 18:20:19 +01:00
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
2023-06-26 23:32:36 +02:00
|
|
|
apt install gnome-pkg-tools -y
|
2023-06-26 23:31:01 +02:00
|
|
|
|
2023-03-09 18:20:19 +01:00
|
|
|
# Clone Upstream
|
2023-06-26 23:17:01 +02:00
|
|
|
git clone https://gitlab.gnome.org/GNOME/gnome-shell -b 44.2 gnome-shell-vrr
|
2023-03-09 18:20:19 +01:00
|
|
|
cp -rvf ./debian ./gnome-shell-vrr
|
|
|
|
cd ./gnome-shell-vrr
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
LOGNAME=root dh_make --createorig -y -l -p gnome-shell-vrr_43.1
|
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/
|