diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-06-20 22:05:08 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-06-20 22:05:08 +0300 |
commit | 463c81abcc6e1adc4463cb9d6f272cf23dbf29c2 (patch) | |
tree | 8422976fbc8b0f0b2ddf9c287fac41d44a543a12 /debian/emacsVER-bin-common.postinst | |
download | emacs25-debian.tar.gz |
Imported emacs25 25.1+1-4debian/25.1+1-4debian
Diffstat (limited to 'debian/emacsVER-bin-common.postinst')
-rw-r--r-- | debian/emacsVER-bin-common.postinst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/emacsVER-bin-common.postinst b/debian/emacsVER-bin-common.postinst new file mode 100644 index 0000000..593d277 --- /dev/null +++ b/debian/emacsVER-bin-common.postinst @@ -0,0 +1,21 @@ +#!/bin/sh + +set -e + +FLAVOR=@DEB_FLAVOR@ +MAJOR=@MAJOR_VERSION@ +MINOR=@MINOR_VERSION@ +FULL=@FULL_VERSION@ +ALTERNATIVES="@ALTERNATIVES@" +BIN_PRIORITY=@BIN_PRIORITY@ + +# update-alternatives on things that collide with xemacs, other editors +for i in ${ALTERNATIVES} +do + update-alternatives \ + --install /usr/bin/$i $i /usr/bin/$i.${FLAVOR} ${BIN_PRIORITY} \ + --slave /usr/share/man/man1/$i.1.gz $i.1.gz \ + /usr/share/man/man1/$i.${FLAVOR}.1.gz +done + +#DEBHELPER# |