#!/bin/sh
set -e

#DEBHELPER#

# create a directory in /usr/local for starplot, and link it from main data dir
# for users' convenience
mkdir -p /usr/local/share/starplot || true
if [ -d /usr/local/share/starplot -a ! -e /usr/share/starplot/local ]; then
	ln -sf ../../local/share/starplot /usr/share/starplot/local
fi

