Date: Monday, November 4, 2019 @ 08:23:30
Author: foutrelis
Revision: 523711
archrelease: copy trunk to community-staging-any
Added:
python-sounddevice/repos/community-staging-any/
python-sounddevice/repos/community-staging-any/PKGBUILD
(from rev 523709, python-sounddevice/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: python-sounddevice/repos/community-staging-any/PKGBUILD (from rev
523709, python-sounddevice/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-11-04 08:23:30 UTC (rev 523711)
@@ -0,0 +1,26 @@
+# Maintainer: Alexander F. Rødseth <[email protected]>
+# Contributor: robertfoster <[email protected]>
+# Contributor: Håvard Pettersson <[email protected]>
+
+pkgname=python-sounddevice
+pkgver=0.3.14
+pkgrel=2
+pkgdesc='Play and Record Sound with Python'
+url='https://python-sounddevice.rtfd.io/'
+arch=(any)
+license=(MIT)
+depends=(portaudio python-cffi)
+makedepends=(python-setuptools)
+optdepends=('python-numpy: to play back and record NumPy arrays')
+source=("https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-$pkgver.tar.gz")
+sha256sums=('c7b0f7ad86550668da55404eabcb63d4212ec622fcce86510092306b77d2e80a')
+
+package() {
+ cd "sounddevice-$pkgver"
+
+ python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/spatialaudio/python-sounddevice
+# vim: ts=2 sw=2 et: