File: nd_build4debianmain

package info (click to toggle)
neurodebian 0.43.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,988 kB
  • sloc: sh: 2,419; python: 1,978; perl: 412; makefile: 207; javascript: 63
file content (23 lines) | stat: -rwxr-xr-x 393 bytes parent folder | download | duplicates (3)
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 --debbuildopts=--changes-option=-S "$@"