- Add override_dh_builddeb with -Zgzip flag - Ensures package uses gzip instead of zstd compression - Provides better compatibility with older dpkg versions - Package now installs successfully on all systems
21 lines
386 B
Makefile
Executable File
21 lines
386 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
# No build step needed for pure Python
|
|
|
|
override_dh_auto_install:
|
|
# Installation handled by debian/install file
|
|
dh_auto_install
|
|
|
|
override_dh_auto_clean:
|
|
# Clean build artifacts
|
|
rm -rf build/ dist/ *.egg-info
|
|
rm -rf src/*.egg-info
|
|
|
|
override_dh_builddeb:
|
|
# Use gzip compression for better compatibility
|
|
dh_builddeb -- -Zgzip
|