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

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