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
This commit is contained in:
commit
b8230e3db0
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
BIN
libbs2b-3.1.0.tar.bz2
(Stored with Git LFS)
Normal file
BIN
libbs2b-3.1.0.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
5
libbs2b.changes
Normal file
5
libbs2b.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 20 13:01:18 UTC 2010 - reddwarf@opensuse.org
|
||||
|
||||
- Initial package
|
||||
|
96
libbs2b.spec
Normal file
96
libbs2b.spec
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user