~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

Viewing changes to debian/alpine-pico.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2009-12-11 15:49:07 UTC
  • mfrom: (4.1.5 lucid)
  • Revision ID: james.westby@ubuntu.com-20091211154907-iuv0ruo941ov6tr0
Tags: 2.00+dfsg-6
* Add diversion for pico and remove conflict with nano.
  (Closes: #415169)
* Build-depend on aspell. This makes it always build correctly with
  spell-checking support. (LP: #340993)
* Change section of alpine-debug to "debug", fixing the override disparity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
 
6
    update-alternatives --install /usr/bin/pico pico /usr/bin/pico.alpine 40 \
 
7
      --slave /usr/share/man/man1/pico.1.gz pico.1.gz \
 
8
      /usr/share/man/man1/pico.alpine.1.gz
 
9
fi
 
10
 
 
11
#DEBHELPER#
 
12