#!/bin/sh # reads a package description script and runs the configure, build, and install # steps. intended only for use by snag program if [ -z "$1" ]; then echo "Usage: $0 " >&2 exit 1 fi # load the description script . $1 # run all install steps for package configure build install