1
0
Fork 0

Releasing debian version 0.2-2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-20 14:25:56 +01:00
parent 74dbb14a20
commit beb18247c3
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
3 changed files with 51 additions and 0 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
lzd (0.2-2) experimental; urgency=low
* Adding lzip alternatives handling.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 04 Jun 2013 16:53:08 +0200
lzd (0.2-1) experimental; urgency=low
* Merging upstream version 0.2.

23
debian/lzd.postinst vendored Normal file
View file

@ -0,0 +1,23 @@
#!/bin/sh
set -e
case "${1}" in
configure)
update-alternatives --quiet \
--install /usr/bin/lzip lzip /usr/bin/lzip.educational-decompressor 1
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0

22
debian/lzd.prerm vendored Normal file
View file

@ -0,0 +1,22 @@
#!/bin/sh
set -e
case "${1}" in
remove|upgrade|deconfigure)
update-alternatives --quiet --remove lzip /usr/bin/lzip.educational-decompressor
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0