git » aubio.git » commit 59e6a7c

Move waf configure options to local bash array for easier handling

author David Runge
2024-04-04 18:53:01 UTC
committer David Runge
2024-04-04 18:53:01 UTC
parent 619603e1b7ca656042de87bd35ebbfbc3ed6578b

Move waf configure options to local bash array for easier handling

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

PKGBUILD +8 -4

diff --git a/PKGBUILD b/PKGBUILD
index 184e9ac..13fec48 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -43,12 +43,16 @@ prepare() {
 }
 
 build() {
+  local waf_configure_options=(
+    --alltests
+    --enable-fftw3
+    --libdir=/usr/lib
+    --prefix=/usr
+  )
+
   cd $pkgbase-$pkgver
   export LINKFLAGS="$LDFLAGS"
-  waf configure --prefix=/usr \
-                --alltests \
-                --enable-fftw3 \
-                --libdir=/usr/lib
+  waf configure "${waf_configure_options[@]}"
   waf build
 
   python -m build --wheel --no-isolation