File: myspell-en-au.postrm

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-- 304 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

rmscript="update-dictcommon-hunspell"

case "$1" in abort-install|remove)
if which $rmscript > /dev/null 2>&1; then
        $rmscript 
	else
        echo "Error: $rmscript not present or executable. Missing dependency on dictionaries-common?" >&2
	    exit 1
	    fi
esac

#DEBHELPER#