Takashi Iwai
d748a12fc3
- Update soname and generate libaubio5 package - Update to version 0.4.5 * src/io/source_avcodec.c: add support for libswresample * aubio: new python command line tool to extract information * src/onset/onset.c: add spectral whitening and compression, improve default parameters * this_version.py: use centralized script to get current version, adding git sha when building from git repo (thanks to MartinHN) * src/spectral/awhithening.h: add adaptive whitening * src/{cvec,mathutils,musicutils}.h: add cvec_logmag, fvec_logmag, and fvec_push * src/onset/onset.h: add aubio_onset_set_default_parameters to load optimal parameters of each novelty function, _{set,get}_compression and _{set,get}_awhitening to turn on/off compression and adaptive whitening * src/spectral/specdesc.h: add weighted phase * src/onset/onset.c: improve default onset parameters (thanks to @superbock for access to his evaluation database), see commit dccfad2 for more details * src/pitch/pitch.c: avoid segfault when using invalid parameters * src/temporal/biquad.c: fix biquad parameters initialization (thanks to @jurlhardt) * examples/aubio{onset,track}.c: add options --miditap-note and --miditap-velo to set which midi note is triggered at onset/beat (thanks to @tseaver) * examples/aubioonset.c: show actual parameters in verbose mode * examples/utils.c: improve memory usage to emit midi notes * python/ext/py-source.c: add with (PEP 343) and iter (PEP 234) interface * python/ext/py-sink.c: add with interface (PEP 343) * python/lib/aubio/cmd.py: new `aubio` command line tool * python/lib/aubio/cut.py: moved from python/scripts/aubiocut * doc/*.rst: reorganize and improve sphinx manual * doc/*.txt: update manpages, add simple manpage for aubio command line OBS-URL: https://build.opensuse.org/request/show/491058 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/aubio?expand=0&rev=13
127 lines
4.1 KiB
RPMSpec
127 lines
4.1 KiB
RPMSpec
#
|
|
# spec file for package aubio
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX 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/
|
|
#
|
|
|
|
|
|
Name: aubio
|
|
%define libpkgname libaubio5
|
|
Summary: Library for real-time audio labelling
|
|
License: GPL-2.0
|
|
Group: System/Libraries
|
|
BuildRequires: alsa-devel
|
|
BuildRequires: doxygen
|
|
%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
|
|
BuildRequires: txt2man
|
|
BuildRequires: pkgconfig(libavcodec)
|
|
BuildRequires: pkgconfig(libavformat)
|
|
BuildRequires: pkgconfig(libavresample)
|
|
BuildRequires: pkgconfig(libavutil)
|
|
%endif
|
|
BuildRequires: fftw3-devel
|
|
BuildRequires: libjack-devel
|
|
BuildRequires: libsamplerate-devel
|
|
BuildRequires: libsndfile-devel
|
|
BuildRequires: pkg-config
|
|
BuildRequires: python-devel
|
|
Version: 0.4.5
|
|
Release: 0
|
|
Source: http://aubio.org/pub/%{name}-%{version}.tar.bz2
|
|
Source1: http://aubio.org/pub/%{name}-%{version}.tar.bz2.asc
|
|
Source99: baselibs.conf
|
|
Url: http://aubio.org
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%define debug_package_requires %{libpkgname} = %{version}-%{release}
|
|
|
|
%description
|
|
Aubio is a library for real time audio labelling. Its features include
|
|
segmenting a sound file before each of its attacks, performing pitch
|
|
detection, tapping the beat and producing midi streams from live audio.
|
|
The name aubio comes from 'audio' with a typo: several transcription
|
|
errors are likely to be found in the results too.
|
|
|
|
%package -n %{libpkgname}
|
|
Summary: Library for real-time audio labelling
|
|
License: GPL-2.0
|
|
Group: System/Libraries
|
|
|
|
%description -n %{libpkgname}
|
|
Aubio is a library for real time audio labelling. Its features include
|
|
segmenting a sound file before each of its attacks, performing pitch
|
|
detection, tapping the beat and producing midi streams from live audio.
|
|
The name aubio comes from 'audio' with a typo: several transcription
|
|
errors are likely to be found in the results too.
|
|
|
|
%package -n libaubio-devel
|
|
Summary: Development package for aubio library
|
|
License: GPL-2.0+
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{libpkgname} = %{version}
|
|
Requires: glibc-devel
|
|
|
|
%description -n libaubio-devel
|
|
This package contains the files needed to compile programs that use
|
|
aubio library.
|
|
|
|
%package tools
|
|
Summary: Example programs for aubio library
|
|
License: GPL-2.0+
|
|
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
|
|
|
%description tools
|
|
This package includes the example programs for aubio library.
|
|
|
|
%prep
|
|
%setup -q
|
|
sed -e "s,/lib,/%_lib," src/wscript_build > src/wscript_build.new
|
|
diff -u src/wscript_build src/wscript_build.new || :
|
|
mv src/wscript_build.new src/wscript_build
|
|
|
|
%build
|
|
./waf configure --prefix=%{_prefix} --libdir=%{_libdir}
|
|
./waf build
|
|
|
|
%install
|
|
./waf install --destdir=%{buildroot}
|
|
mkdir -p %{buildroot}%{_docdir}/%{name}
|
|
cp -pR %{buildroot}%{_datadir}/doc/libaubio-doc/html %{buildroot}%{_docdir}/%{name}
|
|
rm -rf %{buildroot}%{_datadir}/doc/libaubio-doc
|
|
|
|
%post -n %{libpkgname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{libpkgname} -p /sbin/ldconfig
|
|
|
|
%files -n %{libpkgname}
|
|
%defattr(-, root, root)
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%files -n libaubio-devel
|
|
%defattr(-, root, root)
|
|
%doc AUTHORS ChangeLog COPYING README.md
|
|
%{_libdir}/lib*.so
|
|
%{_libdir}/lib*.a
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_includedir}/aubio
|
|
|
|
%files tools
|
|
%defattr(-, root, root)
|
|
%doc %{_docdir}/%{name}
|
|
%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
|
|
%{_mandir}/man1/*
|
|
%endif
|
|
%{_bindir}/*
|
|
|
|
%changelog
|