14 lines
288 B
Makefile
Executable file
14 lines
288 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh ${@}
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- DESTDIR=$(CURDIR)/debian/lzd
|
|
|
|
# alternative handling
|
|
mv debian/lzd/usr/bin/lzd debian/lzd/usr/bin/lzip.lzd
|
|
ln -s /usr/bin/lzip.lzd debian/lzd/usr/bin/lzd
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=lzd-dbg
|