#!/bin/sh

shout() { echo "$0: $@" >&2; }
barf() { shout "fatal: $@"; exit 111; }
safe() { "$@" || barf "cannot $@"; }

here=`env - PATH=$PATH pwd`

safe umask 022
[ -d package ] || barf "no package directory"
[ -d src     ] || barf "no src directory"
[ -d compile ] || barf "no compile directory"

safe cd compile

[ -f install ] && safe ./install `head -n 1 ../conf-home` < EZMLMX.setup

safe cd $here

shout "ezmlmx binary files installed in `head -n 1 conf-home`." 

exit 0
