forked from pool/perl-File-LibMagic
see /usr/share/doc/packages/perl-File-LibMagic/Changes 1.15 2015-09-19 - Fix the Makefile.PL so that we don't install the LibMagic.xs and typemap files. Based on a patch from Petr Pisar. RT #107081. 1.14 2015-09-16 - Fixed handling of extra include dirs passed to Makefile.PL via the -I flag. This wasn't working properly in previous releases. Reported by Andy Jack. GH #6. 1.13 2015-07-12 - Fix failing tests with some versions of libmagic. PR #5 by E. Choroba. 1.12 2015-03-07 - The constructor now accepts named params. In addition to a magic_file param, it now accepts follow_symlinks and uncompress params. These do what you'd expect, tell the object to follow symlinks and/or uncompress files when getting info from them. The old single parameter constructor is still supported, but is no longer documented. - The old APIs are now called "discouraged" rather than "deprecated" in the documentation. I have no plan to remove these APIs any time soon or to make OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-LibMagic?expand=0&rev=16
63 lines
1.9 KiB
RPMSpec
63 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package perl-File-LibMagic
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX 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-File-LibMagic
|
|
Version: 1.15
|
|
Release: 0
|
|
%define cpan_name File-LibMagic
|
|
Summary: Determine MIME types of data or files using libmagic
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/File-LibMagic/
|
|
Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(ExtUtils::CBuilder)
|
|
BuildRequires: perl(Test::Fatal)
|
|
BuildRequires: perl(Test::More) >= 0.96
|
|
%{perl_requires}
|
|
|
|
%description
|
|
The 'File::LibMagic' is a simple perl interface to libmagic from the file
|
|
package (version 4.x or 5.x). You will need both the library
|
|
(_libmagic.so_) and the header file (_magic.h_) to build this Perl module.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
|
%{__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 README.md
|
|
%license LICENSE
|
|
|
|
%changelog
|