File: control

package info (click to toggle)
libextutils-builder-perl 0.017-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 1,351; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,930 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
Source: libextutils-builder-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libextutils-config-perl <!nocheck>,
                     libscalar-list-utils-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>,
                     libversion-perl <!nocheck>,
                     perl
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libextutils-builder-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libextutils-builder-perl.git
Homepage: https://metacpan.org/release/ExtUtils-Builder
Rules-Requires-Root: no

Package: libextutils-builder-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libextutils-config-perl,
         libscalar-list-utils-perl,
         libversion-perl
Description: ExtUtils::Builder Plan framework
 Writing extensions for various build tools can be a daunting task.
 ExtUtils::Builder tries to abstract steps of build processes into reusable
 building blocks for creating platform and build system agnostic executable
 descriptions of work.
 .
 The ExtUtils::Builder Plan framework includes Actions, Nodes and Plans.
 .
 Actions are the cornerstone of the ExtUtils::Builder framework. They provide
 an interface between build tools (e.g. ExtUtils::MakeMaker,
 Module::Build, ...) and building extensions. This allows producing and
 consuming sides to be completely independent from each other. It is a
 flexible abstraction around pieces of work, this work can be a piece of perl
 code, an external command, a mix of those or possibly other things.
 .
 Nodes are composite Actions.
 .
 Plans are the equivalent of a (piece of a) Makefile. They are a bunch of
 nodes that should interconnect.