commit b8230e3db05a03b08283467d737965aff4744fac5e0cc24499a0e75b23f4d273 Author: Ismail Dönmez Date: Fri Mar 23 16:04:12 2012 +0000 Accepting request 110836 from home:RedDwarf Needed by qmmp in multimedia:apps OBS-URL: https://build.opensuse.org/request/show/110836 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libbs2b?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/libbs2b-3.1.0.tar.bz2 b/libbs2b-3.1.0.tar.bz2 new file mode 100644 index 0000000..34f0101 --- /dev/null +++ b/libbs2b-3.1.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4799974becdeeedf0db00115bc63f60ea3fe4b25f1dfdb6903505839a720e46f +size 606283 diff --git a/libbs2b.changes b/libbs2b.changes new file mode 100644 index 0000000..7505a62 --- /dev/null +++ b/libbs2b.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Jul 20 13:01:18 UTC 2010 - reddwarf@opensuse.org + +- Initial package + diff --git a/libbs2b.spec b/libbs2b.spec new file mode 100644 index 0000000..22c4129 --- /dev/null +++ b/libbs2b.spec @@ -0,0 +1,96 @@ +# +# spec file for package libbs2b +# +# Copyright (c) 2012 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/ +# + + +%define soname 0 + +Name: libbs2b +Version: 3.1.0 +Release: 0 +Summary: The Bauer stereophonic-to-binaural DSP library +License: MIT +Group: System/Libraries +Url: http://bs2b..sourceforge.net/ +Source0: https://downloads.sourceforge.net/project/bs2b/libbs2b/%{version}/libbs2b-%{version}.tar.bz2 +BuildRequires: gcc-c++ +BuildRequires: pkg-config +BuildRequires: pkgconfig(sndfile) + +%description +The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is designed to +improve headphone listening of stereo audio records. Recommended for headphone +prolonged listening to disable superstereo fatigue without essential +distortions. + +%package -n libbs2b%{soname} +Summary: The Bauer stereophonic-to-binaural DSP library +Group: System/Libraries + +%description -n libbs2b%{soname} +The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is designed to +improve headphone listening of stereo audio records. Recommended for headphone +prolonged listening to disable superstereo fatigue without essential +distortions. + +%package -n libbs2b-devel +Summary: Development files for libbs2b +Group: Development/Libraries/C and C++ +Requires: libbs2b%{soname} = %{version} + +%description -n libbs2b-devel +Headers and libraries to program against libbs2b. + +%package -n bs2b-tools +Summary: Tools to use the Bauer stereophonic-to-binaural DSP +Group: Productivity/Multimedia/Sound/Utilities + +%description -n bs2b-tools +Tools (bs2bconvert and bs2bstream) to use the Bauer stereophonic-to-binaural +DSP. + +%prep +%setup -q + +%build +%configure --disable-static +make %{?_smp_mflags} + +%install +%make_install +rm -f '%{buildroot}%{_libdir}/libbs2b.la' + +%post -n libbs2b%{soname} -p /sbin/ldconfig + +%postun -n libbs2b%{soname} -p /sbin/ldconfig + +%files -n libbs2b%{soname} +%defattr(0644, root, root, 0755) +%doc AUTHORS ChangeLog COPYING README +%{_libdir}/libbs2b.so.%{soname}* + +%files -n libbs2b-devel +%defattr(0644, root, root, 0755) +%{_libdir}/libbs2b.so +%{_includedir}/bs2b +%{_libdir}/pkgconfig/libbs2b.pc + +%files -n bs2b-tools +%defattr(0755, root, root, 0755) +%{_bindir}/bs2bconvert +%{_bindir}/bs2bstream + +%changelog