Releasing debian version 0.2-2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
74dbb14a20
commit
beb18247c3
3 changed files with 51 additions and 0 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -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
23
debian/lzd.postinst
vendored
Normal 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
22
debian/lzd.prerm
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue