/usr/lib/python2.7/dist-packages/pkgconfig-1.1.0.egg-info/PKG-INFO is in python-pkgconfig 1.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 45 46 | Metadata-Version: 1.0
Name: pkgconfig
Version: 1.1.0
Summary: Interface Python with pkg-config
Home-page: http://github.com/matze/pkgconfig
Author: Matthias Vogelgesang
Author-email: matthias.vogelgesang@gmail.com
License: MIT
Description: pkgconfig
=========
.. image:: https://travis-ci.org/matze/pkgconfig.png?branch=master
:target: https://travis-ci.org/matze/pkgconfig
``pkgconfig`` is a Python module to interface with the ``pkg-config``
command line tool and supports Python 2.6+.
It can be used to
- check if a package exists ::
>>> pkgconfig.exists('glib-2.0')
True
- check if a package meets certain version requirements ::
>>> pkgconfig.installed('glib-2.0', '< 2.26')
False
- query CFLAGS and LDFLAGS ::
>>> pkgconfig.cflags('glib-2.0')
'-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include'
>>> pkgconfig.libs('glib-2.0')
'-lglib-2.0'
- parse the output to build extensions with setup.py ::
>>> d = pkgconfig.parse('glib-2.0 gtk+-2.0')
>>> d['libraries']
set([u'glib-2.0', u'gtk+-2.0'])
The ``pkgconfig`` module is licensed under the MIT license.
Platform: UNKNOWN
|