summaryrefslogtreecommitdiff
path: root/debian/control
blob: 89fc14fdc0e8576c2d2d3ce10ca9ba1f7fb55a1f (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
Source: libdevel-checklib-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 (= 12)
Build-Depends-Indep: libcapture-tiny-perl <!nocheck>,
                     perl
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdevel-checklib-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdevel-checklib-perl.git
Homepage: https://metacpan.org/release/Devel-CheckLib

Package: libdevel-checklib-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         gcc | c-compiler
Description: module for checking the availability of a library
 Devel::CheckLib is a perl module that checks whether a particular C library
 and its headers are available.
 .
 It works by trying to compile some code and linking it to the specified
 libraries. If something pops out the end which looks executable, it gets
 executed. That tiny program is built once for each specified library, and
 (without linking) once for each header file.
 .
 It is also possible to check for the presence of particular functions in a
 library, or even that those functions return particular results.