summaryrefslogtreecommitdiff
path: root/.sbuildrc
blob: 890b44442c6ce5e1f2c6cf014fd258f3c205b129 (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
29
30
# -*- Perl -*-

$pgp_options = ['-us', '-uc'];

# `dht make-all` doesn't like this
#$build_source = 1;
$build_arch_all = 1;
$distribution = 'unstable';

$run_lintian = 1;
$lintian_opts = ['--allow-root', '--color=always', '--fail-on-warnings']; # 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', # too many false positives
    ];

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

1;