File: postinst

package info (click to toggle)
sgml-base 1.31%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 395; sh: 106; makefile: 69
file content (31 lines) | stat: -rwxr-xr-x 1,031 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
## ----------------------------------------------------------------------
## debian/postinst: postinstallation script for foo
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
## Abort if any command returns an error value
set -e

## --------------------------------------------------------------
## Install SGML catalog entries
PACKAGE=foo
CENTRALCAT="/etc/sgml/${PACKAGE}.cat"
ORDCATS="${PACKAGE}/dtd/sgml/1.0/catalog ${PACKAGE}/entities/catalog"
if [ "$1" = "configure" ]
then
    install-sgmlcatalog --quiet --remove ${PACKAGE} || true
    for ordcat in ${ORDCATS}
    do
        update-catalog --quiet --add ${CENTRALCAT} /usr/share/sgml/${ordcat}
    done
    update-catalog --quiet --add --super ${CENTRALCAT}
fi

## ----------------------------------------------------------------------
## Automatically added sections
#DEBHELPER#

exit 0

## ----------------------------------------------------------------------