PKGBUILDs/extra/openal/PKGBUILD

59 lines
1.7 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)
pkgver=1.17.0
2014-08-21 00:21:02 +00:00
pkgrel=1
2012-05-13 23:42:50 +00:00
pkgdesc="A cross-platform 3D audio library"
arch=(i686 x86_64)
url="http://www.openal.org/"
license=(LGPL)
depends=(glibc)
2015-11-19 00:49:29 +00:00
makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack sdl2 sdl_sound ffmpeg)
2012-06-07 13:01:05 +00:00
source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$pkgver.tar.bz2
2015-07-15 13:16:29 +00:00
no-fpuextended.patch
openal-soft-arm_neon-only-for-32bit.patch)
2015-11-19 00:49:29 +00:00
md5sums=('0b7d1e79fd57e6c9827a3bbdc97f19b6'
2015-07-15 13:16:29 +00:00
'de9569536f9f1c2b7b0e90d381c631de'
'5ca12576453226897c4d8821039a7f3e')
2012-05-13 23:42:50 +00:00
2015-07-15 13:16:29 +00:00
prepare() {
2015-11-19 00:49:29 +00:00
mkdir build examples
2012-06-07 13:01:05 +00:00
cd "${srcdir}/$pkgname-soft-$pkgver"
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
cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ../$pkgbase-soft-$pkgver
2012-05-13 23:42:50 +00:00
make
}
2015-11-19 00:49:29 +00:00
package_openal() {
optdepends=('qt4: alsoft-config GUI Configurator'
'fluidsynth: MIDI rendering')
2012-05-13 23:42:50 +00:00
make -C build DESTDIR="$pkgdir/" install
2015-11-19 00:49:29 +00:00
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/"
2012-05-13 23:42:50 +00:00
}