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 31 32 33 34 35
|
Source: libconfig-file-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
Damyan Ivanov <dmn@debian.org>,
Axel Beckert <abe@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
libmodule-build-perl,
perl
Build-Depends-Indep: libtest-pod-coverage-perl <!nocheck>,
libtest-pod-perl <!nocheck>
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libconfig-file-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libconfig-file-perl.git
Homepage: https://metacpan.org/release/Config-File
Rules-Requires-Root: no
Package: libconfig-file-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends}
Multi-Arch: foreign
Description: simple configuration file parsing module
Config::File parses simple configuration files and store its values in
an anonymous hash reference. The syntax of the configuration file is
quite simple:
.
# This is a comment
VALUE_ONE = foo
VALUE_TWO = $VALUE_ONE/bar
VALUE_THREE = The value contains a \# (hash). # This is a comment.
COMPOSED_VALUE[one] = The first component of a clustered value
COMPOSED_VALUE[two] = The second component of a clustered value
|