From f3bb9606067ac8c0c6c500a2e85fc4274a0de5e6 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 03:55:19 +0100 Subject: [PATCH] package created using the webbuild interface [release 3.1.0-1mamba;Tue Oct 15 2019] --- README.md | 2 ++ libbs2b.spec | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 libbs2b.spec diff --git a/README.md b/README.md index 6d0e4c9..6585fbf 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # libbs2b +Bauer stereophonic-to-binaural DSP effect library. + diff --git a/libbs2b.spec b/libbs2b.spec new file mode 100644 index 0000000..3af531a --- /dev/null +++ b/libbs2b.spec @@ -0,0 +1,86 @@ +Name: libbs2b +Version: 3.1.0 +Release: 1mamba +Summary: Bauer stereophonic-to-binaural DSP effect library +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/alexmarsev/libbs2b.git +## GITSOURCE https://github.com/alexmarsev/libbs2b.git master +Source: https://github.com/alexmarsev/libbs2b.git/master/libbs2b-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libflac-devel +BuildRequires: libgcc +BuildRequires: libogg-devel +BuildRequires: libsndfile-devel +BuildRequires: libstdc++6-devel +BuildRequires: libvorbis-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Bauer stereophonic-to-binaural DSP effect library. + +%package devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description devel +This package contains libraries and header files for developing applications that use %{name}. + +%package tools +Group: Applications/Multimedia +Summary: Utility applications for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description tools +This package contains utility applications for %{name}. + +%debug_package + +%prep +%setup -q + +%build +./autogen.sh +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_libdir}/libbs2b.so.* +%doc AUTHORS COPYING + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/bs2b +%{_includedir}/bs2b/bs2b*.h +%{_libdir}/libbs2b.a +%{_libdir}/libbs2b.la +%{_libdir}/libbs2b.so +%{_libdir}/pkgconfig/libbs2b.pc +%doc ChangeLog README + +%files tools +%defattr(-,root,root) +%{_bindir}/bs2bconvert +%{_bindir}/bs2bstream + +%changelog +* Tue Oct 15 2019 Silvan Calarco 3.1.0-1mamba +- package created using the webbuild interface