2025-02-17 21:36:59 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
%:
|
2025-02-17 22:15:38 +01:00
|
|
|
dh ${@} --parallel
|
2025-02-17 21:36:59 +01:00
|
|
|
|
|
|
|
override_dh_auto_install:
|
2025-02-17 21:54:08 +01:00
|
|
|
dh_auto_install -- DESTDIR=$(CURDIR)/debian/lunzip
|
2025-02-17 21:36:59 +01:00
|
|
|
|
2025-02-17 22:08:45 +01:00
|
|
|
# alternative handling
|
2025-02-17 22:07:34 +01:00
|
|
|
mv debian/lunzip/usr/bin/lunzip debian/lunzip/usr/bin/lzip.decompressor
|
|
|
|
mv debian/lunzip/usr/share/man/man1/lunzip.1 debian/lunzip/usr/share/man/man1/lzip.decompressor.1
|
|
|
|
|
|
|
|
ln -s /usr/bin/lzip.decompressor debian/lunzip/usr/bin/lunzip
|
|
|
|
ln -s /usr/share/man/man1/lzip.decompressor.1.gz debian/lunzip/usr/share/man/man1/lunzip.1.gz
|
|
|
|
|
2025-02-17 21:59:58 +01:00
|
|
|
override_dh_builddeb:
|
2025-02-17 22:03:56 +01:00
|
|
|
dh_builddeb -- -Zxz
|
2025-02-17 22:06:41 +01:00
|
|
|
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip --dbg-package=lunzip-dbg
|