forked from pool/perl-MusicBrainz-DiscID
69 lines
2.0 KiB
RPMSpec
69 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package perl-MusicBrainz-DiscID
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-MusicBrainz-DiscID
|
|
Version: 0.06
|
|
Release: 0
|
|
%define cpan_name MusicBrainz-DiscID
|
|
Summary: Perl interface for the MusicBrainz libdiscid library
|
|
License: MIT
|
|
Group: Development/Libraries/Perl
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/N/NJ/NJH/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
# PATCH-FIX-UPSTREAM https://github.com/njh/perl-musicbrainz-discid/issues/10
|
|
Patch0: fix-build-against-perl-ExtUtils-ParseXS.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Test::Pod) >= 1.00
|
|
%{perl_requires}
|
|
# MANUAL BEGIN
|
|
BuildRequires: pkg-config
|
|
BuildRequires: pkgconfig(libdiscid) >= 0.2.2
|
|
Requires: perl(Carp)
|
|
Requires: perl(XSLoader)
|
|
# MANUAL END
|
|
|
|
%description
|
|
MusicBrainz::DiscID is a class to calculate a MusicBrainz DiscID from an
|
|
audio CD in the drive.
|
|
|
|
%prep
|
|
%autosetup -p1 -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 examples README.md
|
|
%license LICENSE.md
|
|
|
|
%changelog
|