forked from pool/python-PyAudio
add python-PyAudio to d:l:python OBS-URL: https://build.opensuse.org/request/show/137022 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyAudio?expand=0&rev=1
77 lines
2.2 KiB
RPMSpec
77 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
Name: python-PyAudio
|
|
Version: 0.2.4
|
|
Release: 0
|
|
License: MIT
|
|
Summary: Python bindings for portaudio
|
|
Url: http://people.csail.mit.edu/hubert/pyaudio/
|
|
Group: Development/Libraries/Python
|
|
Source0: http://people.csail.mit.edu/hubert/pyaudio/packages/pyaudio-0.2.4.tar.gz
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-distribute
|
|
BuildRequires: portaudio-devel
|
|
%{py_requires}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
PyAudio provides Python bindings for PortAudio, the cross-platform audio I/O
|
|
library. With PyAudio, you can easily use Python to play and record audio on a
|
|
variety of platforms.
|
|
|
|
PyAudio is designed to work with the PortAudio v19 API 2.0. Note that PyAudio
|
|
currently only supports blocking-mode audio I/O.
|
|
|
|
%package docs
|
|
Summary: Documentation for %{name}
|
|
|
|
%description docs
|
|
PyAudio provides Python bindings for PortAudio, the cross-platform audio I/O
|
|
library. With PyAudio, you can easily use Python to play and record audio on a
|
|
variety of platforms.
|
|
|
|
This package provides a documentation
|
|
|
|
%prep
|
|
%setup -q -n PyAudio-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install \
|
|
--prefix=%{_prefix} \
|
|
--root=%{buildroot}
|
|
|
|
%fdupes -s %{buildroot}/%{_prefix}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc CHANGELOG README
|
|
%{py_sitedir}/*egg-info
|
|
%{py_sitedir}/_portaudio.so
|
|
%{py_sitedir}/pyaudio.py*
|
|
|
|
%files docs
|
|
%defattr(-,root,root)
|
|
%doc docs
|
|
|
|
%changelog
|
|
|