mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
26 lines
805 B
Text
26 lines
805 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-pyaudio
|
|
pkgver=0.2.13
|
|
pkgrel=0
|
|
pkgdesc="Bindings for PortAudio v19, the cross-platform audio input/output stream library"
|
|
url="https://people.csail.mit.edu/hubert/pyaudio/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools python3-dev portaudio-dev"
|
|
source="https://pypi.python.org/packages/source/P/PyAudio/PyAudio-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/PyAudio-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
1ae453cae442118ae1b0db44ca8736621a361af3686e47561bffa0d43352039ed5f882412ca22a2a4320b362f966e727b0e38bb9706e99b85d99bc16cc943008 PyAudio-0.2.13.tar.gz
|
|
"
|