blob: cdea758cc1cdd56d32d73a18a186995a984355f1 (
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
|
##############################################################################
# PACKAGE BUILD RELATED (additionally produce _source.changes)
##############################################################################
# -d
$distribution = 'bullseye';
# -A
$build_arch_all = 1;
# -s
# $build_source = 1;
# --source-only-changes (applicable for dput. irrelevant for dgit push-source).
# $source_only_changes = 1;
# -v
# $verbose = 1;
# parallel build
# $ENV{'DEB_BUILD_OPTIONS'} = 'parallel=5';
##############################################################################
# POST-BUILD RELATED (turn off functionality by setting variables to 0)
##############################################################################
# $run_lintian = 1;
# $lintian_opts = ['-i', '-I'];
# $run_piuparts = 1;
# $piuparts_opts = ['--schroot', '%r-%a-sbuild', '--no-eatmydata'];
# $run_autopkgtest = 1;
# $autopkgtest_root_args = '';
# $autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ];
##############################################################################
# PERL MAGIC
##############################################################################
1;
|