Guest User

python-rtmixer-git

a guest
Aug 10th, 2024
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | Source Code | 0 0
  1. # Maintainer: robertfoster
  2.  
  3. pkgname=python-rtmixer
  4. pkgver=0.1.7
  5. pkgrel=1
  6. pkgdesc="Reliable low-latency audio playback and recording with Python"
  7. arch=(any)
  8. url="https://github.com/spatialaudio/python-rtmixer"
  9. license=('MIT')
  10. makedepends=(portaudio python-build python-cffi python-installer python-pa-ringbuffer python-setuptools python-wheel)
  11. source=("git+https://github.com/spatialaudio/python-rtmixer.git")
  12.  
  13. prepare() {
  14.   cd ${pkgname}
  15.   git submodule update --init --recursive --depth 1 --recommend-shallow
  16. }
  17.  
  18. build() {
  19.   cd ${pkgname}
  20.   python -m build --wheel --no-isolation
  21. }
  22.  
  23. package() {
  24.   cd ${pkgname}
  25.   python -m installer --destdir="$pkgdir" dist/*.whl
  26. }
  27.  
  28. sha256sums=('17cc6798a56278b5d74a07a9f607093089ab1b3fcfbaecaafb30659100935cc1')
Advertisement
Add Comment
Please, Sign In to add comment