diff options
| -rw-r--r-- | DEBIAN/control | 4 | ||||
| -rwxr-xr-x | DEBIAN/postinst | 12 | ||||
| -rwxr-xr-x | DEBIAN/prerm | 11 |
3 files changed, 2 insertions, 25 deletions
diff --git a/DEBIAN/control b/DEBIAN/control index d461950..9c96284 100644 --- a/DEBIAN/control +++ b/DEBIAN/control @@ -1,6 +1,6 @@ Package: st -Version: 0.8.4-1 -Provides: x-terminal-emulator +Version: 0.8.4-2 +Provides: st Maintainer: Andrew Guschin <saintruler@gmail.com> Architecture: amd64 Section: x11 diff --git a/DEBIAN/postinst b/DEBIAN/postinst deleted file mode 100755 index 20b0bbd..0000000 --- a/DEBIAN/postinst +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -set -e - -# Install the new alternative. -update-alternatives \ - --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/st 15 \ - --slave /usr/share/man/man1/x-terminal-emulator.1.gz x-terminal-emulator.1.gz /usr/share/man/man1/st.1.gz - - - -exit 0 diff --git a/DEBIAN/prerm b/DEBIAN/prerm deleted file mode 100755 index 3e49cca..0000000 --- a/DEBIAN/prerm +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -e - -if [ "$1" = remove ] || [ "$1" = deconfigure ]; then - update-alternatives --remove x-terminal-emulator /usr/bin/st -fi - - - -exit 0 |