update to 0.2.1 [release 0.2.1-1mamba;Fri Feb 19 2021]
This commit is contained in:
parent
77e5b1a085
commit
40540f36ff
@ -1,18 +1,20 @@
|
|||||||
Name: libsamplerate
|
Name: libsamplerate
|
||||||
Version: 0.1.9
|
Version: 0.2.1
|
||||||
Release: 2mamba
|
Release: 1mamba
|
||||||
Summary: Library for performing sample rate conversion on audio
|
Summary: Library for performing sample rate conversion on audio
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://www.mega-nerd.com
|
URL: https://www.mega-nerd.com
|
||||||
Source: http://www.mega-nerd.com/SRC/libsamplerate-%{version}.tar.gz
|
Source: https://github.com/libsndfile/libsamplerate.git/%{version}/libsamplerate-%{version}.tar.bz2
|
||||||
|
#Source: http://www.mega-nerd.com/SRC/libsamplerate-%{version}.tar.gz
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libsndfile-devel
|
BuildRequires: libsndfile-devel
|
||||||
## AUTOBUILDREQ-ENDBuildRequires: pkgconfig >= 0.15
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: pkgconfig >= 0.15
|
||||||
BuildRequires: libfftw-devel >= 0.15.0
|
BuildRequires: libfftw-devel >= 0.15.0
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
@ -27,7 +29,7 @@ The conversion ratio can also vary with time for speeding up and slowing down ef
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Header files, libraries and development documentation for %{name}
|
Summary: Header files, libraries and development documentation for %{name}
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains the header files, static libraries and development documentation for %{name}.
|
This package contains the header files, static libraries and development documentation for %{name}.
|
||||||
@ -36,7 +38,7 @@ This package contains static libraries and header files needed for development.
|
|||||||
%package tools
|
%package tools
|
||||||
Summary: Tools provided with %{name}
|
Summary: Tools provided with %{name}
|
||||||
Group: Applications/Multimedia
|
Group: Applications/Multimedia
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description tools
|
%description tools
|
||||||
This package contains the header files, static libraries and development documentation for %{name}.
|
This package contains the header files, static libraries and development documentation for %{name}.
|
||||||
@ -46,15 +48,15 @@ This package contains the tools provided with %{name}.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
sed -i "s,| arm-\* |,| aarch64-\* | arm-\* |," Cfg/config.sub
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%cmake -d build
|
||||||
|
|
||||||
%make
|
%make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
%makeinstall
|
%makeinstall -C build
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
@ -70,20 +72,22 @@ sed -i "s,| arm-\* |,| aarch64-\* | arm-\* |," Cfg/config.sub
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%{_includedir}/samplerate.h
|
%{_includedir}/samplerate.h
|
||||||
%{_libdir}/libsamplerate.a
|
|
||||||
%{_libdir}/libsamplerate.la
|
|
||||||
%{_libdir}/libsamplerate.so
|
%{_libdir}/libsamplerate.so
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%dir %{_datadir}/doc/libsamplerate0-dev
|
%dir %{_libdir}/cmake/SampleRate
|
||||||
%dir %{_datadir}/doc/libsamplerate0-dev/html
|
%{_libdir}/cmake/SampleRate/SampleRate*.cmake
|
||||||
%{_datadir}/doc/libsamplerate0-dev/html/*
|
%dir %{_docdir}/libsamplerate
|
||||||
%doc ChangeLog NEWS README
|
%{_docdir}/libsamplerate/*
|
||||||
|
%doc ChangeLog NEWS
|
||||||
|
|
||||||
%files tools
|
#%files tools
|
||||||
%defattr(-, root, root)
|
#%defattr(-, root, root)
|
||||||
%{_bindir}/*
|
#%{_bindir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 19 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.1-1mamba
|
||||||
|
- update to 0.2.1
|
||||||
|
|
||||||
* Wed Dec 09 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.9-2mamba
|
* Wed Dec 09 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.9-2mamba
|
||||||
- rebuilt with debug package and aarch64 build fix
|
- rebuilt with debug package and aarch64 build fix
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user