pkg/debian: Enforce XZ compression for meta packages by overriding debian/rules

This commit is contained in:
Maximilian Luz 2022-12-11 15:14:15 +01:00
parent 94909fc728
commit 94ae305270
No known key found for this signature in database
GPG key ID: 70EC0937F6C26F02

View file

@ -60,6 +60,11 @@ cat <<EOF > "debian/rules"
#!/usr/bin/make -f
export DH_VERBOSE = 1
# The DPKG in Ubuntu 22.04 defaults to using ZSTD, which is not yet supported
# by the DPKG in Debian 11
override_dh_builddeb:
dh_builddeb -- -Zxz
%:
dh \$@
EOF