From: Richard Kettlewell Date: Mon, 2 Jun 2008 20:48:28 +0000 (+0100) Subject: Add scripts/setup.anjou for local test installs X-Git-Tag: 4.0~37 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/2e6bdcfa22b04e259111eb3bc3d34c1117d7dc66?hp=cca956b199841d754e8a78391d2e2c7efce4a3ee Add scripts/setup.anjou for local test installs --- diff --git a/scripts/setup.anjou b/scripts/setup.anjou new file mode 100755 index 0000000..1fc0bae --- /dev/null +++ b/scripts/setup.anjou @@ -0,0 +1,33 @@ +#! /bin/bash +# +# Setup script for local test installs. +# + +set -e + +if type gmake >/dev/null 2>&1; then + MAKE=gmake +else + MAKE=make +fi + +if type really >/dev/null 2>&1; then + REALLY=really +else + REALLY=sudo +fi + +echo --- build --- +${MAKE} +echo --- install --- +${REALLY} ${MAKE} install +echo --- teardown --- +${REALLY} ./scripts/teardown || true +echo --- setup --- +${REALLY} ./scripts/setup --root /music \ + --encoding ISO-8859-1 \ + --port none \ + --email rjk@greenend.org.uk \ + --register y \ + --play local +echo --- done ---