forked from pool/soundtouch
Dave Plater
9c293d7662
Reviewed ok OBS-URL: https://build.opensuse.org/request/show/67568 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/soundtouch?expand=0&rev=13
139 lines
4.0 KiB
RPMSpec
139 lines
4.0 KiB
RPMSpec
#
|
|
# spec file for package soundtouch (Version 1.5.0)
|
|
#
|
|
# 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: soundtouch
|
|
License: LGPLv2.1+
|
|
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
|
Url: http://www.surina.net/soundtouch
|
|
Summary: Audio Processing Library
|
|
Version: 1.5.0
|
|
Release: 1
|
|
BuildRequires: gcc-c++ pkg-config
|
|
Source: %{name}-%{version}.tar.bz2
|
|
Source1: soundstretch.1
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
SoundTouch is an open source audio processing library that allows
|
|
changing the sound tempo, pitch and playback rate parameters
|
|
independently from each other.
|
|
*Easy-to-use implementation of time-stretch, pitch-shift and sample
|
|
rate transposing routines.
|
|
*High-performance object-oriented C++ implementation.
|
|
*Clear and easy-to-use programming interface via a single C++ class.
|
|
*Supported audio data format : 16Bit integer or 32bit floating point
|
|
PCM mono/stereo
|
|
*Capable of real-time audio stream processing:
|
|
input/output latency max. ~ 100 ms.
|
|
Processing 44.1kHz/16bit stereo sound in realtime requires a 133 Mhz
|
|
Intel Pentium processor or better.
|
|
*Additional assembler-level and Intel-MMX instruction set optimizations
|
|
for Intel x86 compatible processors, offering several times increase
|
|
in the processing performance.
|
|
|
|
Authors:
|
|
--------
|
|
Olli Parviainen
|
|
|
|
%package -n libSoundTouch0
|
|
License: LGPLv2.1+
|
|
Summary: Audio Processing Library
|
|
Group: System/Libraries
|
|
|
|
%description -n libSoundTouch0
|
|
SoundTouch is an open source audio processing library that allows
|
|
changing the sound tempo, pitch and playback rate parameters
|
|
independently from each other.
|
|
|
|
Authors:
|
|
--------
|
|
Olli Parviainen
|
|
|
|
%package devel
|
|
License: LGPLv2.1+
|
|
Summary: Audio Processing Library
|
|
Group: Development/Languages/C and C++
|
|
Requires: %{name} = %{version} glibc-devel
|
|
|
|
%description devel
|
|
SoundTouch is an open-source audio processing library that allows
|
|
changing the sound tempo, pitch and playback rate parameters
|
|
independently from each other.
|
|
|
|
Authors:
|
|
--------
|
|
Olli Parviainen
|
|
|
|
%prep
|
|
%setup -q -n %{name}
|
|
tr -d '\r' <README.html >README.html~
|
|
touch -r README.html README.html~
|
|
mv README.html~ README.html
|
|
%ifarch x86_64
|
|
# cpu_detect_x86_gcc.cpp: Assembler messages:
|
|
# cpu_detect_x86_gcc.cpp:140: Error: suffix or operands invalid for `pop'
|
|
# cpu_detect_x86_gcc.cpp:143: Error: suffix or operands invalid for `push'
|
|
sed -i s/__x86_64__/__INVALID__/ include/STTypes.h
|
|
%endif
|
|
%ifnarch %ix86 x86_64
|
|
# cc1plus: error: unrecognized command line option "-msse2"
|
|
sed -i s/-msse2// source/SoundTouch/Makefile.am
|
|
%endif
|
|
|
|
%build
|
|
autoreconf -f -i
|
|
%configure\
|
|
--enable-shared\
|
|
--disable-static
|
|
make %{?jobs:-j%jobs} pkgdocdir=%{_docdir}/%{name}
|
|
|
|
%install
|
|
%makeinstall pkgdocdir=%{_docdir}/%{name}
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
|
|
# Add man page for soundstretch generated by help2man
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
cp %{S:1} %{buildroot}%{_mandir}/man1
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -n libSoundTouch0 -p /sbin/ldconfig
|
|
|
|
%postun -n libSoundTouch0 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc %{_docdir}/%{name}
|
|
%{_bindir}/*
|
|
%{_mandir}/man1/*
|
|
|
|
%files -n libSoundTouch0
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libSoundTouch.so.0*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_datadir}/aclocal/*.m4
|
|
%{_includedir}/soundtouch
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_libdir}/*.so
|
|
|
|
%changelog
|