/usr/bin/nd_build4allnd 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 20 21 22 23 24 25 26 | #!/bin/bash
if [ -z "$1" ]; then
cat << EOT
Backports and build a source package for all currently supported NeuroDebian
releases.
Synopsis
--------
nd_build4allnd <dsc file>
EOT
exit 1
fi
dscfile=$1; shift
. /etc/neurodebian/cmdsettings.sh
for d in $allnddists; do
dfamily=${d%%-*}
drelease=${d##*-}
bpdsc=$(nd_backport $drelease $dscfile | tail -n1 | sed -e 's/^.* //g')
nd_build $dfamily $drelease $bpdsc "$@" || :
done
|