#!/bin/sh -e if test -e /opt/steeldump/lib/sbcl/sbcl.core; then echo "SBCL already installed, skipping" else /opt/steeldump/scripts/build-sbcl fi for system in climacs gsharp clx esa flexichain mcclim spatial-trees \ split-sequence cl-ppcre cl-fad tab-layout trivial-gray-streams \ flexi-streams trivial-sockets cl-irc beirc eclipse stumpwm do f=/opt/steeldump/lib/sbcl/${system}.heap if test -e $f; then echo "$f already present, skipping" else /opt/steeldump/scripts/build-$system fi done