File: openjade.postinst

package info (click to toggle)
openjade 1.4devel1-20.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,636 kB
  • sloc: cpp: 90,082; sh: 10,847; ansic: 2,365; lisp: 894; perl: 604; makefile: 443; sed: 93
file content (15 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

case "$1" in
    configure)
	## alternatives
	update-alternatives --quiet --install \
	    /usr/bin/openjade openjade /usr/bin/openjade-1.4devel 20
	;;
esac

#DEBHELPER#

exit 0