summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorAndrej Shadura <andrew.shadura@collabora.co.uk>2019-07-12 15:22:58 +0200
committerAndrej Shadura <andrew.shadura@collabora.co.uk>2019-07-12 15:22:58 +0200
commit10619e6f696dfa3df9dac92fbe670b903045710f (patch)
tree7fbb141091734c7f003028c250d465cb57dd454f /debian/control
parent4c7cf9671ede366611eed57c93ab405bff1ba03b (diff)
parent873a85dc94538e52451c1074ce9e0fe6fd86fa9c (diff)
Merge branch 'debian/experimental' into debian/master
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control35
1 files changed, 31 insertions, 4 deletions
diff --git a/debian/control b/debian/control
index deccc74..997ac8d 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,10 @@ Source: pkgconf
Section: devel
Priority: optional
Maintainer: Andrej Shadura <andrewsh@debian.org>
-Build-Depends: debhelper (>= 9), dh-autoreconf, autotools-dev
+Build-Depends:
+ debhelper-compat (= 12),
+ autotools-dev,
+ dh-autoreconf
Homepage: https://github.com/pkgconf/pkgconf
Standards-Version: 3.9.5
Vcs-Git: https://salsa.debian.org/debian/pkgconf.git
@@ -11,12 +14,36 @@ Vcs-Browser: https://salsa.debian.org/debian/pkgconf
Package: pkgconf
Architecture: any
Multi-Arch: foreign
-Depends: ${shlibs:Depends}, ${misc:Depends}, libdpkg-perl
-Provides: pkg-config (= 0.29-1)
-Breaks: pkg-config (>= 0.29-1)
+Depends:
+ libdpkg-perl,
+ ${misc:Depends},
+ ${perl:Depends},
+ ${shlibs:Depends}
+Provides:
+ pkg-config (= 0.29-1)
+Breaks:
+ pkg-config (>= 0.29-1)
Description: manage compile and link flags for libraries
pkgconf is a replacement for pkg-config, a system for managing library
compile and link flags that works with automake and autoconf.
.
pkgconf does not bundle any third-party libraries or depend on any
third-party libraries.
+
+Package: libpkgconf
+Section: libdevel
+Architecture: any
+Multi-Arch: same
+Depends:
+ ${misc:Depends},
+ ${shlibs:Depends}
+Description: library to manage compile and link flags for libraries
+ pkgconf is a replacement for pkg-config, a system for managing library
+ compile and link flags that works with automake and autoconf.
+ .
+ pkgconf does not bundle any third-party libraries or depend on any
+ third-party libraries.
+ .
+ libpkgconf is a library which provides access to most of pkgconf's
+ functionality, to allow other tooling such as compilers and IDEs to
+ discover and use libraries configured by pkgconf.