/usr/bin/nd_build4debianmain 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 | #!/bin/bash
if [ -z "$1" ]; then
cat << EOT
Script to build a source package for Debian Sid. The cowbuilder will be updated
before the actual building takes place.
Synopsis
--------
nd_build <dsc file> [cowbuilder options]
EOT
exit 1
fi
set -e
# common options
dscfile=$1
shift;
nd_updatedist debian sid amd64
nd_build debian sid amd64 $dscfile "$@"
|