File: myspell-en-au.postinst

package info (click to toggle)
openoffice.org-en-au 2.1-5.5
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 21,828 kB
  • sloc: makefile: 38; sh: 20
file content (16 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

SCRIPT="update-dictcommon-hunspell"

if [ "$1" = "configure" ] ; then
    if which $SCRIPT > /dev/null 2>&1; then
	$SCRIPT  
    else
	echo "Error: $SCRIPT not present or executable. Missing dependency on dictionaries-common?" >&2
	exit 1
    fi
fi

#DEBHELPER#