speex/speex.spec

147 lines
3.9 KiB
RPMSpec
Raw Normal View History

#
# spec file for package speex (Version 1.1.999_1.2rc1)
#
# Copyright (c) 2010 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: speex
Summary: An Open Source, Patent Free Speech Codec
%define package_version 1.2rc1
Version: 1.1.999_%{package_version}
Release: 1
License: BSD3c
Group: System/Libraries
Url: http://www.speex.org/
Source: %{name}-%{package_version}.tar.bz2
Source2: baselibs.conf
Patch1: speex-1.0.5-warning-fix.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libogg-devel pkgconfig
# bug437293
%ifarch ppc64
Obsoletes: speex-64bit
%endif
#
%description
Speex is a patent free audio codec designed especially for voice
(unlike Vorbis which targets general audio) signals and providing good
narrowband and wideband quality. This project aims to be complementary
to the Vorbis codec.
%package -n libspeex1
Summary: An Open Source, Patent Free Speech Codec Library
License: BSD3c
Group: System/Libraries
Obsoletes: libspeex < %{version}
Provides: libspeex = %{version}
%description -n libspeex1
Speex is a patent free audio codec designed especially for voice
(unlike Vorbis which targets general audio) signals and providing good
narrowband and wideband quality. This project aims to be complementary
to the Vorbis codec.
%package -n libspeexdsp1
Summary: An Open Source, Patent Free Speech Codec Library
License: BSD3c
Group: System/Libraries
%description -n libspeexdsp1
Speex is a patent free audio codec designed especially for voice
(unlike Vorbis which targets general audio) signals and providing good
narrowband and wideband quality. This project aims to be complementary
to the Vorbis codec.
%package devel
Summary: Development package for SpeeX
License: BSD3c
Group: Development/Libraries/C and C++
Provides: libspeex-devel = %{version}-%release
Obsoletes: libspeex-devel < %{version}-%release
Requires: libspeex1 = %{version}
Requires: libspeexdsp1 = %{version}
Requires: glibc-devel
Requires: libogg-devel
# bug437293
%ifarch ppc64
Obsoletes: speex-devel-64bit
%endif
#
%description devel
This package contains the files needed to compile programs that use the
SpeeX library.
%prep
%setup -q -n %{name}-%{package_version}
%patch1
%build
%if 0%{?suse_version} >= 1100
autoreconf -fi
%endif
%configure \
--disable-static \
--with-ogg-libraries=%{_libdir}
%{__make} %{?jobs:-j%{jobs}}
%install
%makeinstall
# remove duped documents
%{__rm} -rf %{buildroot}%{_datadir}/doc/speex*
# remove unneeded *.la files
%{__rm} -f %{buildroot}%{_libdir}/*.la
%{__rm} -f %{buildroot}%{_libdir}/*.a
%post -n libspeex1 -p /sbin/ldconfig
%postun -n libspeex1 -p /sbin/ldconfig
%post -n libspeexdsp1 -p /sbin/ldconfig
%postun -n libspeexdsp1 -p /sbin/ldconfig
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%doc doc/*.pdf
%{_bindir}/speex*
%{_mandir}/man?/*
%files -n libspeex1
%defattr(-,root,root)
%{_libdir}/libspeex.so.*
%files -n libspeexdsp1
%defattr(-,root,root)
%{_libdir}/libspeexdsp.so.*
%files devel
%defattr(-,root,root)
%doc doc/manual.pdf
%{_includedir}/*
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/*.pc
%{_datadir}/aclocal/*.m4
%changelog