[arch-commits] Commit in openal/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Jan Steffens
heftig at archlinux.org
Wed Feb 24 10:52:01 UTC 2021
Date: Wednesday, February 24, 2021 @ 10:52:01
Author: heftig
Revision: 408723
archrelease: copy trunk to extra-x86_64
Added:
openal/repos/extra-x86_64/PKGBUILD
(from rev 408722, openal/trunk/PKGBUILD)
Deleted:
openal/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 124 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 64 insertions(+), 60 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-02-24 10:51:53 UTC (rev 408722)
+++ PKGBUILD 2021-02-24 10:52:01 UTC (rev 408723)
@@ -1,60 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <heftig at archlinux.org>
-# Contributor: Allan McRae <allan at archlinux.org>
-# Contributor: Jason Chu <jchu at xentac.net>
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.21.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 qt5-base sdl2
- libsndfile ffmpeg libmysofa git cmake)
-optdepends=('qt5-base: alsoft-config GUI Configurator'
- 'fluidsynth: MIDI rendering'
- 'libmysofa: makemhr tool')
-_commit=c0cbe602ce66481a822ba16856052a47154f5cc5 # tags/openal-soft-1.21.0
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
-sha512sums=('SKIP')
-
-pkgver() {
- cd openal-soft
- git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
-}
-
-prepare() {
- cd openal-soft
-}
-
-build() {
- cmake -S openal-soft -B build \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=None \
- -DCMAKE_INSTALL_LIBDIR=lib
- cmake --build build
-}
-
-package_openal() {
- DESTDIR="$pkgdir" cmake --install build
- install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
-
-### Split openal-examples
- mkdir -p examples/usr/bin
- for f in \
- alffplay alhrtf allatency alloopback almultireverb alplay alrecord \
- alreverb alstream altonegen
- do
- mv -v "$pkgdir/usr/bin/$f" examples/usr/bin/$f
- done
-}
-
-package_openal-examples() {
- pkgdesc+=" (example programs)"
- depends=("openal=$pkgver-$pkgrel" sdl2 libsndfile ffmpeg)
- optdepends=()
-
- mv examples/* "$pkgdir"
-}
Copied: openal/repos/extra-x86_64/PKGBUILD (from rev 408722, openal/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-02-24 10:52:01 UTC (rev 408723)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) <heftig at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Jason Chu <jchu at xentac.net>
+
+pkgbase=openal
+pkgname=(openal openal-examples)
+pkgver=1.21.1
+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 qt5-base sdl2
+ libsndfile ffmpeg libmysofa git cmake)
+optdepends=('qt5-base: alsoft-config GUI Configurator'
+ 'fluidsynth: MIDI rendering'
+ 'libmysofa: makemhr tool')
+_commit=ae4eacf147e2c2340cc4e02a790df04c793ed0a9 # tags/1.21.1
+source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
+sha512sums=('SKIP')
+
+pkgver() {
+ cd openal-soft
+ git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
+}
+
+prepare() {
+ cd openal-soft
+}
+
+build() {
+ cmake -S openal-soft -B build \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_LIBDIR=lib
+ cmake --build build
+}
+
+_pick() {
+ local p="$1" f d; shift
+ for f; do
+ d="$srcdir/$p/${f#$pkgdir/}"
+ mkdir -p "$(dirname "$d")"
+ mv "$f" "$d"
+ rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+ done
+}
+
+package_openal() {
+ DESTDIR="$pkgdir" cmake --install build
+ install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
+
+ cd "$pkgdir"
+ _pick examples usr/bin/al{ffplay,hrtf,latency,loopback,multireverb}
+ _pick examples usr/bin/al{play,record,reverb,stream,tonegen}
+}
+
+package_openal-examples() {
+ pkgdesc+=" (example programs)"
+ depends=("openal=$pkgver-$pkgrel" sdl2 libsndfile ffmpeg)
+ optdepends=()
+ mv examples/* "$pkgdir"
+}
More information about the arch-commits
mailing list