File: params.pm

package info (click to toggle)
deps 0.13-4.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 260 kB
  • sloc: perl: 1,464; xml: 1,127; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file is part of the DEPS/graph-includes package
#
# (c) 2005,2006 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.

package graphincludes::params;
use strict;
use warnings;

our $VERSION='0.13';
our $verbose=0;
our $showdropped=0;
our $debug=0;
our ($minshow, $maxshow) = (1, 1);
our (@focus, @inclpath, @sysinclpath);
our $filename_regexp;

1;