File: oo2c.postinst

package info (click to toggle)
oo2c64 1.5.0-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 8,904 kB
  • ctags: 5,775
  • sloc: ansic: 97,209; sh: 473; makefile: 344; perl: 57; lisp: 21
file content (15 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

package=oo2c

case "$1" in
  install | upgrade)
    install-info --description="The OOC Reference Manual. \
 Documents the Optimizing Oberon-2 Compiler (OOC) and its library,\
 as well as its implementation \"oo2c\"." \
	--section "Development" "Development" \
	--quiet /usr/share/info/OOCref.info
  ;;
esac

#DEBHELPER#