]> git.donarmstrong.com Git - neurodebian.git/blob - tools/nd_build4debianmain
Also for stats report which repo and which job number use our setup
[neurodebian.git] / tools / nd_build4debianmain
1 #!/bin/bash
2
3 if [ -z "$1" ]; then
4 cat << EOT
5 Script to build a source package for Debian Sid. The cowbuilder will be updated
6 before the actual building takes place.
7
8 Synopsis
9 --------
10
11   nd_build <dsc file> [cowbuilder options]
12 EOT
13 exit 1
14 fi
15
16 set -e
17
18 # common options
19 dscfile=$1
20 shift;
21
22 nd_updatedist debian sid amd64
23 nd_build debian sid amd64 $dscfile "$@"