debian packaging updates plus fix two typos #325

Closed
barak wants to merge 10 commits from master into master
2 changed files with 28 additions and 0 deletions
Showing only changes of commit 1b1fc2422b - Show all commits
+16
View File
@@ -0,0 +1,16 @@
#! /bin/sh
set -e
case "$1" in
configure)
# Alternatives
update-alternatives --quiet \
--install /usr/bin/x-terminal-emulator \
x-terminal-emulator /usr/bin/cool-retro-term 20 \
--slave /usr/share/man/man1/x-terminal-emulator.1.gz \
x-terminal-emulator.1.gz /usr/share/man/man1/cool-retro-term.1.gz
;;
esac
#DEBHELPER#
+12
View File
@@ -0,0 +1,12 @@
#! /bin/sh
set -e
case "$1" in
remove|deconfigure)
# Alternatives
update-alternatives --quiet --remove x-terminal-emulator /usr/bin/cool-retro-term
;;
esac
#DEBHELPER#