File id3lib.spec of Package id3lib
#
# spec file for package id3lib
#
# Copyright (c) 2011 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/
#
# norootforbuild
Name: id3lib
BuildRequires: dos2unix doxygen fdupes gcc-c++ libstdc++-devel zlib-devel
BuildRequires: libtool
License: LGPL-2.1+
Group: System/Libraries
Group: System/Libraries
AutoReqProv: on
Version: 3.8.3
Release: 247
Source0: %{name}-%{version}.tar.bz2
Patch1: id3lib-%{version}-autoconf.patch
Patch2: id3lib-%{version}-cleanup.patch
Patch3: id3lib-%{version}-doxygen.patch
Patch4: id3lib-%{version}-gcc34.patch
Patch5: id3lib-%{version}-UTF16-writing-bug.patch
Patch6: id3lib-%{version}-zlib.patch
Patch7: id3lib-%{version}-uninitialized.patch
Patch8: id3lib-%{version}-tag_file.patch
Patch9: id3lib-%{version}-missing_c_includes.patch
Patch10: id3lib-%{version}-fix_m4_quoting.patch
Patch11: id3lib-%{version}-unsigned_argc.patch
Patch12: id3lib-%{version}-iomanip_h.patch
Patch13: id3lib-%{version}-fix-stack-overrun
Url: http://id3lib.sourceforge.net/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: A Library for Manipulating ID3v1 and ID3v2 tags
%description
This package provides a software library for manipulating ID3v1 and
ID3v2 tags. It provides a convenient interface for software developers
to include standards-compliant ID3v1/2 tagging capabilities in their
applications. Features include identification of valid tags, automatic
size conversions, synchronization and resynchronization of tag frames,
seamless tag compression and decompression, and optional padding
facilities.
Authors:
--------
Scott Thomas Haug <scott@id3.org>
John Adcock <johnadcock@hotmail.com>
Dirk Mahoney <dirk@id3.org>
%package devel
License: LGPL-2.1+
Summary: Documentation and Headers for id3lib
Group: Development/Libraries/C and C++
Requires: %{name} = %{version} libstdc++-devel
%description devel
This package contains the headers and documentation for the id3lib API
that programmers will need to develop applications which use id3lib,
the software library for ID3v1 and ID3v2 tag manipulation.
Authors:
--------
Scott Thomas Haug <scott@id3.org>
John Adcock <johnadcock@hotmail.com>
Dirk Mahoney <dirk@id3.org>
%package examples
License: LGPL-2.1+
Summary: Example Applications for the id3lib Library
Group: Development/Libraries/C and C++
Requires: %{name} = %{version}
%description examples
This package contains simple example applications that make use of
id3lib, a software library for ID3v1 and ID3v2 tag manipulation.
Authors:
--------
Scott Thomas Haug <scott@id3.org>
John Adcock <johnadcock@hotmail.com>
Dirk Mahoney <dirk@id3.org>
%prep
%setup -q
%patch1
%patch2
%patch3
%patch4 -p1
%patch5 -p1
%patch6
%patch7
%patch8
%patch9
%patch10
%patch11
%patch12
%patch13 -p1
for i in doc/id3v2.3.0{.txt,.html}; do
dos2unix $i
done
%build
rm acconfig.h
autoreconf -fiv
%configure --disable-static --with-pic --enable-debug=no
%{__make} %{?jobs:-j%jobs}
%install
make DESTDIR=$RPM_BUILD_ROOT install
make docs
make -C examples clean
rm -rf examples/.deps
chmod 644 examples/*
# strip down the doc and examples directories so we can copy w/impunity
for i in doc/ examples/ ; do \
find ./$i -name 'Makefile*' -exec rm {} \; ; done
%{__rm} -f %{buildroot}%{_libdir}/*.la
%fdupes -s doc
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-, root, root)
%doc AUTHORS COPYING ChangeLog HISTORY NEWS README THANKS TODO
%{_prefix}/%_lib/*.so.*
%files devel
%defattr(-, root, root)
%{_prefix}/include/id3*.h
%{_prefix}/include/id3
%{_prefix}/%_lib/*.so
%doc doc/*.*
%doc doc/api
%files examples
%defattr(-, root, root)
%doc examples
%{_prefix}/bin/id3*
%changelog