File: postinst

package info (click to toggle)
ada-reference-manual 20021112web-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 18,652 kB
  • ctags: 8,921
  • sloc: makefile: 52; sh: 20
file content (11 lines) | stat: -rw-r--r-- 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

if [ "$1" = "configure" ]; then
	install-info --quiet --section "Development" "Development" /usr/share/info/arm95.info
	if which install-docs >/dev/null 2>&1; then
		install-docs -i /usr/share/doc-base/arm95-tc1-changes
		install-docs -i /usr/share/doc-base/arm95-tc1
		install-docs -i /usr/share/doc-base/aarm95-tc1
	fi
fi