git » aubio.git » commit 619603e

Use bash arrays with one entry per line for easier handling

author David Runge
2024-04-04 18:50:22 UTC
committer David Runge
2024-04-04 18:50:22 UTC
parent 9287918004e818e22f49b802e8836fa809144bfd

Use bash arrays with one entry per line for easier handling

Signed-off-by: David Runge <dvzrv@archlinux.org>

PKGBUILD +29 -5

diff --git a/PKGBUILD b/PKGBUILD
index 2dd7218..184e9ac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,8 +10,21 @@ pkgdesc="A tool for extracting annotations from audio signals"
 arch=(x86_64)
 url="https://aubio.org/"
 license=(GPL-3.0-or-later)
-makedepends=(doxygen ffmpeg fftw jack libsamplerate libsndfile python-build
-python-installer python-numpy python-setuptools python-wheel txt2man waf)
+makedepends=(
+  doxygen
+  ffmpeg
+  fftw
+  jack
+  libsamplerate
+  libsndfile
+  python-build
+  python-installer
+  python-numpy
+  python-setuptools
+  python-wheel
+  txt2man
+  waf
+)
 checkdepends=(python-pytest)
 source=(
   https://$pkgbase.org/pub/$pkgbase-$pkgver.tar.bz2
@@ -55,8 +68,14 @@ check() {
 
 package_aubio() {
   pkgdesc="A tool for extracting annotations from audio signals"
-  depends=(fftw glibc libavcodec.so libavformat.so libavutil.so libjack.so
-  libsamplerate.so libsndfile.so libswresample.so)
+  depends=(
+    ffmpeg libavcodec.so libavformat.so libavutil.so libswresample.so
+    fftw
+    glibc
+    jack libjack.so
+    libsamplerate libsamplerate.so
+    libsndfile libsndfile.so
+  )
   optdepends=('python-aubio: Python bindings')
   provides=(libaubio.so)
   groups=(pro-audio)
@@ -71,7 +90,12 @@ package_aubio() {
 
 package_python-aubio() {
   pkgdesc="Python bindings for aubio"
-  depends=(glibc libaubio.so python-numpy)
+  depends=(
+    aubio libaubio.so
+    glibc
+    python
+    python-numpy
+  )
 
   cd $pkgbase-$pkgver
   python -m installer --destdir="$pkgdir" dist/*.whl