#!/bin/sh

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

here=`env - PATH=$PATH pwd`
me=`cat package/path | cut -d'/' -f2`

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
[ -f instcheck ] && safe ./instcheck

safe cd $here

shout "${me} binary files installed in `head -n 1 conf-home`/bin." 

exit 0
