File libdiscid.spec of Package libdiscid
#
# spec file for package libdiscid
#
# 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: libdiscid
Version: 0.3.0
Release: 0
Summary: Library for creating MusicBrainz DiscIDs from audio CDs
License: LGPL-2.1+
Group: Development/Libraries/C and C++
Url: http://musicbrainz.org/doc/libdiscid
Source: http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/%{name}-%{version}.tar.gz
Patch0: libdiscid-visibility.patch
Patch1: libdiscid-no-crypto.patch
BuildRequires: libtool
BuildRequires: openssl-devel
BuildRequires: pkg-config
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
libdiscid is a C library for creating MusicBrainz DiscIDs from audio
CDs. It reads a CD's table of contents (TOC) and generates an
identifier which can be used to lookup the CD at MusicBrainz.
Additionally, it provides a submission URL for adding the DiscID to the
database.
The interface of this library is new, but the DiscID algorithm and the
operating system dependent CD-ROM/DVD-ROM access code have been ported
from libmusicbrainz version 2. For more info about the interface read
the [WWW] API documentation.
%define libname libdiscid0
%package -n %{libname}
Summary: Library for creating MusicBrainz DiscIDs from audio CDs
Group: Development/Libraries/C and C++
# provide for debuginfo package (always requiring main package name)
Provides: libdiscid = %{version}
%description -n %{libname}
libdiscid is a C library for creating MusicBrainz DiscIDs from audio
CDs. It reads a CD's table of contents (TOC) and generates an
identifier which can be used to lookup the CD at MusicBrainz.
Additionally, it provides a submission URL for adding the DiscID to the
database.
The interface of this library is new, but the DiscID algorithm and the
operating system dependent CD-ROM/DVD-ROM access code have been ported
from libmusicbrainz version 2. For more info about the interface read
the [WWW] API documentation.
%package devel
Summary: Library for creating MusicBrainz DiscIDs from audio CDs
Group: Development/Libraries/C and C++
Requires: %{libname} = %{version}
%description devel
libdiscid is a C library for creating MusicBrainz DiscIDs from audio
CDs. It reads a CD's table of contents (TOC) and generates an
identifier which can be used to lookup the CD at MusicBrainz.
Additionally, it provides a submission URL for adding the DiscID to the
database.
The interface of this library is new, but the DiscID algorithm and the
operating system dependent CD-ROM/DVD-ROM access code have been ported
from libmusicbrainz version 2. For more info about the interface read
the [WWW] API documentation.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build
autoreconf -fiv
%configure --enable-hidden-symbols --disable-static --with-pic
make %{?_smp_mflags}
%install
%make_install
rm -f %{buildroot}%{_libdir}/*.la
%clean
rm -rf %{buildroot}
%check
make check
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%files -n %{libname}
%defattr(-,root,root)
%{_libdir}/libdiscid.so.0*
%files devel
%defattr(-,root,root)
%dir %{_includedir}/discid
%{_includedir}/discid/*.h
%{_libdir}/libdiscid.so
%{_libdir}/pkgconfig/libdiscid.pc
%changelog