[arch-commits] Commit in openal/trunk (PKGBUILD)

Jan Steffens heftig at archlinux.org
Thu Jun 8 20:27:16 UTC 2017


    Date: Thursday, June 8, 2017 @ 20:27:15
  Author: heftig
Revision: 298448

1.18.0-1

Modified:
  openal/trunk/PKGBUILD

----------+
 PKGBUILD |   34 ++++++++++++++++++++--------------
 1 file changed, 20 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-06-08 20:25:16 UTC (rev 298447)
+++ PKGBUILD	2017-06-08 20:27:15 UTC (rev 298448)
@@ -5,39 +5,45 @@
 
 pkgbase=openal
 pkgname=(openal openal-examples)
-pkgver=1.17.2
-pkgrel=2
+pkgver=1.18.0
+pkgrel=1
 pkgdesc="Cross-platform 3D audio library, software implementation"
 arch=(i686 x86_64)
 url="https://github.com/kcat/openal-soft"
 license=(LGPL)
 depends=(glibc)
-makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack sdl2 sdl_sound ffmpeg
-             git)
-source=("git+$url#tag=openal-soft-$pkgver")
+makedepends=(alsa-lib pkgconfig cmake libpulse qt5-base fluidsynth portaudio jack sdl2 sdl_sound
+             ffmpeg git)
+_commit=61e43d4039277c538f3f6e0af7c988e7d71d8558  # tags/openal-soft-1.18.0
+source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
 sha256sums=('SKIP')
 
+pkgver() {
+  cd openal-soft
+  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
+}
+
 prepare() {
   mkdir build examples
-  cd $pkgbase-soft
-  sed -i 's/PIX_FMT_YUV420P/AV_&/g' examples/alffplay.c
+  cd openal-soft
 }
 
 build() {
   cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ../$pkgbase-soft
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_LIBDIR=lib ../openal-soft
   make
 }
 
 package_openal() {
-  optdepends=('qt4: alsoft-config GUI Configurator'
+  optdepends=('qt5-base: alsoft-config GUI Configurator'
               'fluidsynth: MIDI rendering')
 
-  make -C build DESTDIR="$pkgdir/" install
-  install -m644 $pkgbase-soft/{env-vars,hrtf}.txt "$pkgdir/usr/share/openal/"
+  make -C build DESTDIR="$pkgdir" install
 
+  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
+
 ### Split openal-examples
-  mv "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
+  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
 }
 
 package_openal-examples() {
@@ -44,6 +50,6 @@
   pkgdesc+=" (example programs)"
   depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
 
-  mkdir -p "$pkgdir/usr/bin"
-  mv examples/* "$pkgdir/usr/bin/"
+  mkdir "$pkgdir/usr"
+  mv -v examples "$pkgdir/usr/bin"
 }



More information about the arch-commits mailing list