/usr/bin/nd_build4all is in neurodebian-dev 0.37.6.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 "$@"
|