PKGBUILDs/extra/openal/PKGBUILD

72 lines
2.1 KiB
Bash
Raw Normal View History

2015-11-19 00:49:29 +00:00
# $Id$
2012-05-13 23:42:50 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Allan McRae <allan@archlinux.org>
2012-06-07 13:01:05 +00:00
# Contributor: Jason Chu <jchu@xentac.net>
2012-05-13 23:42:50 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2012-06-07 13:01:05 +00:00
# - fix for unimplemented _FPU_EXTENDED
2015-07-15 13:16:29 +00:00
# - patch to use neon only on 32bit ARM
2012-05-13 23:42:50 +00:00
2015-11-19 00:49:29 +00:00
pkgbase=openal
pkgname=(openal openal-examples)
2017-09-25 01:09:53 +00:00
pkgver=1.18.2
2017-08-02 00:00:29 +00:00
pkgrel=1
2016-02-27 16:02:12 +00:00
pkgdesc="Cross-platform 3D audio library, software implementation"
2012-05-13 23:42:50 +00:00
arch=(i686 x86_64)
2016-02-27 16:02:12 +00:00
url="https://github.com/kcat/openal-soft"
2012-05-13 23:42:50 +00:00
license=(LGPL)
depends=(glibc)
2017-08-02 00:00:29 +00:00
makedepends=(alsa-lib libpulse fluidsynth portaudio jack qt5-base sdl2 sdl_sound ffmpeg
git cmake ninja)
2017-09-25 01:09:53 +00:00
_commit=ce6076091bac3c00cd10803916e8911495580bd0 # tags/openal-soft-1.18.2
2017-06-09 00:12:09 +00:00
source=("git+https://github.com/kcat/openal-soft#commit=$_commit"
2015-11-29 16:52:29 +00:00
'no-fpuextended.patch'
'openal-soft-arm_neon-only-for-32bit.patch')
sha256sums=('SKIP'
'960e346be09cf2ce658f3e4ac47581609cc7df42b0b0a7a1a41a0f8ac5d17b6f'
'419ec5b76ab5013bb0004c785497766364ec7ea60b3b6badf11284147dfddb19')
2012-05-13 23:42:50 +00:00
2017-06-09 00:12:09 +00:00
pkgver() {
cd openal-soft
git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
}
2017-07-23 15:48:53 +00:00
# https://bugs.archlinux.org/task/54908
git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
2015-07-15 13:16:29 +00:00
prepare() {
2015-11-19 00:49:29 +00:00
mkdir build examples
2017-06-09 00:12:09 +00:00
cd openal-soft
2015-11-19 00:49:29 +00:00
2012-06-07 13:01:05 +00:00
patch -p1 -i "${srcdir}"/no-fpuextended.patch
2015-07-15 13:16:29 +00:00
patch -p1 -i "${srcdir}"/openal-soft-arm_neon-only-for-32bit.patch
}
build() {
2015-11-19 00:49:29 +00:00
cd build
2017-08-02 00:00:29 +00:00
cmake ../openal-soft -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=lib
ninja
2012-05-13 23:42:50 +00:00
}
2015-11-19 00:49:29 +00:00
package_openal() {
2017-06-09 00:12:09 +00:00
optdepends=('qt5-base: alsoft-config GUI Configurator'
2015-11-19 00:49:29 +00:00
'fluidsynth: MIDI rendering')
2017-08-02 00:00:29 +00:00
DESTDIR="$pkgdir" ninja -C build install
2017-06-09 00:12:09 +00:00
install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
2015-11-19 00:49:29 +00:00
### Split openal-examples
2017-06-09 00:12:09 +00:00
mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
2015-11-19 00:49:29 +00:00
}
package_openal-examples() {
pkgdesc+=" (example programs)"
depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
2017-06-09 00:12:09 +00:00
mkdir "$pkgdir/usr"
mv -v examples "$pkgdir/usr/bin"
2012-05-13 23:42:50 +00:00
}