Date: Monday, February 6, 2023 @ 11:42:59
  Author: heftig
Revision: 468291

1.23.0-1

Modified:
  openal/trunk/PKGBUILD

----------+
 PKGBUILD |   45 ++++++++++++++++++++++++++++++++++-----------
 1 file changed, 34 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD    2023-02-06 11:34:32 UTC (rev 468290)
+++ PKGBUILD    2023-02-06 11:42:59 UTC (rev 468291)
@@ -4,19 +4,37 @@
 
 pkgbase=openal
 pkgname=(openal openal-examples)
-pkgver=1.22.2
+pkgver=1.23.0
 pkgrel=1
 pkgdesc="Cross-platform 3D audio library, software implementation"
 arch=(x86_64)
 url="https://github.com/kcat/openal-soft";
 license=(LGPL)
-depends=(gcc-libs)
-makedepends=(alsa-lib libpulse fluidsynth portaudio jack pipewire qt5-base sdl2
-             libsndfile ffmpeg libmysofa git cmake ninja)
-optdepends=('qt5-base: alsoft-config GUI Configurator'
-            'fluidsynth: MIDI rendering'
-            'libmysofa: makemhr tool')
-_commit=dc83d99c95a42c960150ddeee06c124134b52208  # tags/1.22.2
+depends=(
+  gcc-libs
+)
+makedepends=(
+  alsa-lib
+  cmake
+  ffmpeg
+  fluidsynth
+  git
+  jack
+  libmysofa
+  libpulse
+  libsndfile
+  ninja
+  pipewire
+  portaudio
+  qt5-base
+  sdl2
+)
+optdepends=(
+  'qt5-base: alsoft-config GUI Configurator'
+  'fluidsynth: MIDI rendering'
+  'libmysofa: makemhr tool'
+)
+_commit=70c14cd560db819f180073052f4c2bfae5cf3c31  # tags/1.23.0
 source=("git+https://github.com/kcat/openal-soft#commit=$_commit";)
 b2sums=('SKIP')
 
@@ -30,10 +48,13 @@
 }
 
 build() {
-  cmake -S openal-soft -B build -G Ninja \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_BUILD_TYPE=None \
+  local cmake_options=(
+    -DCMAKE_INSTALL_PREFIX=/usr
+    -DCMAKE_BUILD_TYPE=None
     -DCMAKE_INSTALL_LIBDIR=lib
+  )
+
+  cmake -S openal-soft -B build -G Ninja "${cmake_options[@]}"
   cmake --build build
 }
 
@@ -64,3 +85,5 @@
   optdepends=()
   mv examples/* "$pkgdir"
 }
+
+# vim:set sw=2 sts=-1 et:

Reply via email to