20 lines
569 B
Makefile
Executable file
20 lines
569 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh ${@}
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- DESTDIR=$(CURDIR)/debian/pdlzip
|
|
|
|
# alernative handling
|
|
mv debian/pdlzip/usr/bin/pdlzip debian/pdlzip/usr/bin/lzip.public-domain
|
|
mv debian/pdlzip/usr/share/man/man1/pdlzip.1 debian/pdlzip/usr/share/man/man1/lzip.public-domain.1
|
|
|
|
ln -s /usr/bin/lzip.public-domain debian/pdlzip/usr/bin/pdlzip
|
|
ln -s /usr/share/man/man1/lzip.public-domain.1.gz debian/pdlzip/usr/share/man/man1/pdlzip.1.gz
|
|
|
|
override_dh_builddeb:
|
|
dh_builddeb -- -Zxz
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=pdlzip-dbg
|