I’m building a .deb using dpkg-buildpackage
on Ubuntu 21.10 that is then extracted in a Debian system, which does not use zstd compression. How can I switch to the old compression when building my deb?
Running the command with --compression=xz
or the equivalent -Z
flag still leads to a zstd compressed file.
2
Answers
You can make dpkg use another compression format by adding the following lines to the rules file, which is located in your debian folder:
It is a bit late, but I hope it helps somebody.
If you’re using
dpkg-deb
to build your deb add-Zxz
to change the compression method from zstd to xz.dpkg-deb -Zxz --build --root-owner-group yourdeb_1.1-0_amd64