#!/bin/sh
# Create the ispell dictionary package scripts from a template

usage="usage: $0 language_name"

case $# in
 1) ;;
 *) echo $usage ; exit 1 ;;
esac

for ext in prerm postinst
do
 echo "Creating debian-i$1.$ext"
 sed "s/--LANGUAGE--/$1/g" < debian-i.$ext > debian-i$1.$ext
done

