2023-02-25 12:21:52 +01:00
|
|
|
# Clone Upstream
|
2023-08-20 23:30:20 +02:00
|
|
|
git clone https://gitlab.freedesktop.org/xorg/xserver.git ./xwayland -b xwayland-23.2.0
|
2023-07-14 18:43:36 +02:00
|
|
|
cp -rvf ./debian ./xwayland/
|
2023-02-25 12:21:52 +01:00
|
|
|
cd ./xwayland
|
|
|
|
|
|
|
|
# Get build deps
|
2023-08-21 18:34:03 +02:00
|
|
|
apt upgrade -y
|
2023-02-25 12:21:52 +01:00
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-08-20 23:30:20 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p xwayland_23.2.0
|
2023-07-14 18:43:36 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-02-25 12:21:52 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|