perl-ExtUtils-PkgConfig/perl-ExtUtils-PkgConfig.spec
Stephan Kulow 89252452ba Accepting request 177389 from home:coolo:update-perl
- updated to 1.14
     - Skip tests for pkg-config binary with the '--max-version' switch on
       OpenBSD 5.2, due to a bug in OpenBSD's implemenation of 'pkg-config'
     - Updated Makefile.PL to use a META_MERGE block with WriteMakefile(); this
       block is what MetaCPAN reads when generating page output
 
     - Correctly handle major-only versions, like '2' (RT #68246).
     - Updated FSF address and copyrights

OBS-URL: https://build.opensuse.org/request/show/177389
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-ExtUtils-PkgConfig?expand=0&rev=18
2013-06-04 11:31:36 +00:00

65 lines
2.0 KiB
RPMSpec

#
# spec file for package perl-ExtUtils-PkgConfig
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: perl-ExtUtils-PkgConfig
Version: 1.14
Release: 0
%define cpan_name ExtUtils-PkgConfig
Summary: simplistic interface to pkg-config
License: LGPL-2.1+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/ExtUtils-PkgConfig/
Source: http://www.cpan.org/authors/id/X/XA/XAOC/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: pkgconfig
#BuildRequires: perl(ExtUtils::PkgConfig)
%{perl_requires}
%description
The pkg-config program retrieves information about installed libraries,
usually for the purposes of compiling against and linking to them.
ExtUtils::PkgConfig is a very simplistic interface to this utility,
intended for use in the Makefile.PL of perl extensions which bind libraries
that pkg-config knows. It is really just boilerplate code that you would've
written yourself.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes perl-ExtUtils-PkgConfig.doap README
%changelog