Removed dbg package in favor of dbgsym. Fixied debian/docs Simplifed debian/rules Renamed debian/qterminal.manpages to debian/manpages
23 lines
368 B
Bash
Executable File
23 lines
368 B
Bash
Executable File
#!/bin/sh
|
|
# postinst script for qterminal
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/qterminal 40
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|