From 9ffa5617da4211de0f206bdf6a691314a873dd85 Mon Sep 17 00:00:00 2001 From: Michael Hanke Date: Fri, 4 Sep 2009 08:19:31 -0400 Subject: [PATCH] Convenience script to build for all releases at once. --- tools/nd_build4allnd | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 tools/nd_build4allnd diff --git a/tools/nd_build4allnd b/tools/nd_build4allnd new file mode 100755 index 0000000..9cea1b8 --- /dev/null +++ b/tools/nd_build4allnd @@ -0,0 +1,25 @@ +#!/bin/bash + +if [ -z "$1" ]; then +cat << EOT +Backports and build a source package for all currently supported NeuroDebian +releases. + +Synopsis +-------- + + nd_build4allnd +EOT +exit 1 +fi + + + +. /home/neurodebian/neurodebian.git/tools/nd_cmdsettings.sh + +for d in $alldists; do + dfamily=${d%%-*} + drelease=${d##*-} + + nd_build $dfamily $drelease $1 +done -- 2.39.2