mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
58 lines
1.7 KiB
Bash
58 lines
1.7 KiB
Bash
# $Id$
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Jason Chu <jchu@xentac.net>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - fix for unimplemented _FPU_EXTENDED
|
|
# - patch to use neon only on 32bit ARM
|
|
|
|
pkgbase=openal
|
|
pkgname=(openal openal-examples)
|
|
pkgver=1.17.0
|
|
pkgrel=1
|
|
pkgdesc="A cross-platform 3D audio library"
|
|
arch=(i686 x86_64)
|
|
url="http://www.openal.org/"
|
|
license=(LGPL)
|
|
depends=(glibc)
|
|
makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack sdl2 sdl_sound ffmpeg)
|
|
source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$pkgver.tar.bz2
|
|
no-fpuextended.patch
|
|
openal-soft-arm_neon-only-for-32bit.patch)
|
|
md5sums=('0b7d1e79fd57e6c9827a3bbdc97f19b6'
|
|
'de9569536f9f1c2b7b0e90d381c631de'
|
|
'5ca12576453226897c4d8821039a7f3e')
|
|
|
|
prepare() {
|
|
mkdir build examples
|
|
|
|
cd "${srcdir}/$pkgname-soft-$pkgver"
|
|
patch -p1 -i "${srcdir}"/no-fpuextended.patch
|
|
patch -p1 -i "${srcdir}"/openal-soft-arm_neon-only-for-32bit.patch
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ../$pkgbase-soft-$pkgver
|
|
make
|
|
}
|
|
|
|
package_openal() {
|
|
optdepends=('qt4: alsoft-config GUI Configurator'
|
|
'fluidsynth: MIDI rendering')
|
|
|
|
make -C build DESTDIR="$pkgdir/" install
|
|
install -m644 $pkgbase-soft-$pkgver/{env-vars,hrtf}.txt "$pkgdir/usr/share/openal/"
|
|
|
|
### Split openal-examples
|
|
mv "$pkgdir"/usr/bin/al{ffplay,latency,loopback,reverb,stream} examples/
|
|
}
|
|
|
|
package_openal-examples() {
|
|
pkgdesc+=" (example programs)"
|
|
depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
|
|
|
|
mkdir -p "$pkgdir/usr/bin"
|
|
mv examples/* "$pkgdir/usr/bin/"
|
|
}
|