File: djview4.postinst

package info (click to toggle)
djview4 4.12-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 4,256 kB
  • sloc: cpp: 22,079; ansic: 9,746; sh: 241; makefile: 228; awk: 94; xml: 84
file content (15 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

set -e

case "$1" in
    configure)
	update-alternatives --quiet \
	    --install /usr/bin/djview djview /usr/bin/djview4 40 \
	    --slave \
	    /usr/share/man/man1/djview.1.gz djview.1.gz \
	    /usr/share/man/man1/djview4.1.gz
	;;
esac

#DEBHELPER#