2023-02-25 12:21:52 +01:00
|
|
|
# Clone Upstream
|
2023-07-14 17:06:35 +02:00
|
|
|
git clone https://gitlab.freedesktop.org/xorg/xserver.git -b xwayland-23.1.2
|
2023-02-25 12:21:52 +01:00
|
|
|
cp -rvf ./debian ./xserver
|
|
|
|
mv ./xserver ./xwayland
|
|
|
|
cd ./xwayland
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-07-14 17:06:35 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p xwayland_23.1.2
|
2023-02-25 12:21:52 +01:00
|
|
|
dpkg-buildpackage
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|