12 lines
266 B
Makefile
Executable file
12 lines
266 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh ${@}
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- DESTDIR=$(CURDIR)/debian/lzd
|
|
|
|
execute_after_dh_auto_install:
|
|
# update-alternatives
|
|
mv debian/lzd/usr/bin/lzd debian/lzd/usr/bin/lzip.lzd
|
|
ln -s /usr/bin/lzip.lzd debian/lzd/usr/bin/lzd
|