### -*-perl-*- my $hackdir = "/usr/local.schroot/hacks"; ## Default distribution. $distribution = "stretch"; ## Force an update before trying the build so that we get just-now built ## versions of our dependencies. $apt_update = 1; ## Don't try to upgrade the chroot. That's left for the administator to do. $apt_upgrade = 0; ## Wrap the build command up. $build_env_cmnd = "$hackdir/buildwrap"; ## Use hacked versions of some tools. $aptitude = "$hackdir/aptitude"; $apt_get = "$hackdir/apt-get"; ## Make sure Scratchbox can find its configuration while we're in the ## chroot, even after `HOME' has been swizzled. $environment_filter = [ '^PATH$', '^DEB(IAN|SIGN)?_[A-Z_]+$', '^(C(PP|XX)?|LD|F)FLAGS(_APPEND)?$', '^USER(NAME)?$', '^LOGNAME$', '^HOME$', '^TERM$', '^SBOX_HOME$', '^SHELL$' ]; ## Use the `/private' space constructed by the `sbuild' profile. $build_environment = { "TMPDIR" => "/private", }; ## Actually resolve alternatives properly. $resolve_alternatives = 1; ## Don't do anything clever if the build dependencies fail. The clever thing ## doesn't work on older distributions. Also, it takes extra time, and ## that's not desirable. $bd_uninstallable_explainer = "apt"; 1;