]> git.donarmstrong.com Git - neurodebian.git/commitdiff
Merge branch 'master' of alioth:/git/pkg-exppsy/neurodebian
authorMichael Hanke <michael.hanke@gmail.com>
Sun, 10 Oct 2010 00:56:31 +0000 (20:56 -0400)
committerMichael Hanke <michael.hanke@gmail.com>
Sun, 10 Oct 2010 00:56:31 +0000 (20:56 -0400)
* 'master' of alioth:/git/pkg-exppsy/neurodebian:
  NF: nd_build4all -- builds for debian main and all backports in 1 command

tools/nd_build4all [new file with mode: 0755]

diff --git a/tools/nd_build4all b/tools/nd_build4all
new file mode 100755 (executable)
index 0000000..3053b05
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+if [ -z "$1" ]; then
+cat << EOT
+Backport and build a source package for all currently supported NeuroDebian
+releases and main Debian release.
+
+Synopsis
+--------
+
+  nd_build4all <dsc file>
+EOT
+exit 1
+fi
+
+dscfile=$1; shift
+
+nd_build4debianmain $dscfile "$@"
+nd_build4allnd $dscfile "$@"