]> git.donarmstrong.com Git - neurodebian.git/blobdiff - tools/nd_build4all
NF: nd_build4all -- builds for debian main and all backports in 1 command
[neurodebian.git] / tools / nd_build4all
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 "$@"