#! /bin/sh

# Basic script for installing a Geomorph user
# Should be executed under the user account
# Should be executed before the first launch of Geomorph,
# otherwise Geomorph will try to execute the parts
# automatically if the directory or the RC file are not found

VERSION=0.31

if [ -d $HOME/geomorph ]
then
	/usr/local/share/geomorph/$VERSION/install-step1-dir
	exit
fi

/usr/local/share/geomorph/$VERSION/install-step1-dir
/usr/local/share/geomorph/$VERSION/install-step2-rcfile
/usr/local/share/geomorph/$VERSION/install-step3-desktop

