This commit is contained in:
commit
8730d1d957
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
|
3
aubio-0.3.2.tar.bz2
Normal file
3
aubio-0.3.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7dd184d94d7de35067e43612ada253e632760c908bc237a5d95944a75bc06807
|
||||
size 433266
|
5
aubio.changes
Normal file
5
aubio.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 16 18:20:10 CEST 2008 - tiwai@suse.de
|
||||
|
||||
- initial version: 0.3.2
|
||||
|
126
aubio.spec
Normal file
126
aubio.spec
Normal file
@ -0,0 +1,126 @@
|
||||
#
|
||||
# spec file for package aubio (Version 0.3.2)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: aubio
|
||||
Summary: Library for real-time audio labelling
|
||||
BuildRequires: alsa-devel fftw3-devel libjack-devel
|
||||
BuildRequires: libsamplerate-devel libsndfile-devel pkg-config python
|
||||
License: GPL v2 only
|
||||
Group: System/Libraries
|
||||
AutoReqProv: on
|
||||
Version: 0.3.2
|
||||
Release: 2
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Url: http://aubio.org
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%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.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Paul Brossier <piem@altern.org>
|
||||
|
||||
%package -n libaubio2
|
||||
License: GPL v2 only
|
||||
Summary: Library for real-time audio labelling
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libaubio2
|
||||
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.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Paul Brossier <piem@altern.org>
|
||||
|
||||
%package -n libaubio-devel
|
||||
License: GPL v2 or later
|
||||
Summary: Development package for aubio library
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libaubio2 = %{version} glibc-devel
|
||||
|
||||
%description -n libaubio-devel
|
||||
This package contains the files needed to compile programs that use
|
||||
aubio library.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Paul Brossier <piem@altern.org>
|
||||
|
||||
%package tools
|
||||
License: GPL v2 or later
|
||||
Summary: Example programs for aubio library
|
||||
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
||||
|
||||
%description tools
|
||||
This package includes the example programs for aubio library.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Paul Brossier <piem@altern.org>
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
autoreconf -fi
|
||||
%configure \
|
||||
--disable-static
|
||||
make %{?jobs:-j %jobs}
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.*a
|
||||
|
||||
%post -n libaubio2 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libaubio2 -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files -n libaubio2
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/lib*.so.*
|
||||
|
||||
%files -n libaubio-devel
|
||||
%defattr(-, root, root)
|
||||
%doc AUTHORS ChangeLog COPYING README THANKS TODO
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_includedir}/aubio
|
||||
|
||||
%files tools
|
||||
%defattr(-, root, root)
|
||||
%{_bindir}/*
|
||||
%{_datadir}/sounds/aubio
|
||||
|
||||
%changelog
|
||||
* Wed Jul 16 2008 tiwai@suse.de
|
||||
- initial version: 0.3.2
|
Loading…
Reference in New Issue
Block a user