summaryrefslogtreecommitdiff
path: root/.sbuildrc
blob: 7811144a52e076df32a1d3aabda80570d9e810e8 (plain)
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
27
28
# -*- Perl -*-

$pgp_options = ['-us', '-uc'];
$build_source = 1;
$build_arch_all = 1;
#$distribution = 'unstable';

$run_lintian = 1;
$lintian_opts = ['--allow-root', '--color=always']; # might also pass: +EIL +pedantic

# TODO detect or specify in a var at top of file the architecture in the following
$run_piuparts = 1;
$piuparts_opts = [
    '--schroot',
    'unstable-i386-piuparts',
    '--fail-if-inadequate',
    '--fail-on-broken-symlinks',
    ];

$external_commands = {
  'post-build-commands' => [
    [
      'adt-run-sbuild', '%c', 'unstable-i386-sbuild'
    ],
  ],
};

1;