summaryrefslogtreecommitdiff
path: root/extra/openal/PKGBUILD
blob: b80436e78ce7ba75801a4cd4252ced654fe5eccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# $Id: PKGBUILD 173158 2012-12-11 21:59:43Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Jason Chu <jchu@xentac.net>

pkgname=openal
pkgver=1.15.1
pkgrel=1.1
pkgdesc="A cross-platform 3D audio library"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.openal.org/"
license=(LGPL)
depends=(glibc)
makedepends=(alsa-lib sdl pkgconfig cmake libpulse)
options=('!libtool')
source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$pkgver.tar.bz2
	fpu.patch)
md5sums=('ea83dec3b9655a27d28e7bc7cae9cd71'
	 '902d3f0e6cb16584f2b21d65235c3168')

build() {
  # patch coming from Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=666963
  cd $srcdir/$pkgname-soft-$pkgver
  patch -Np1 -i "$srcdir/fpu.patch"
  cd $srcdir/$pkgname-soft-$pkgver/build
  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ..
  make
}

package() {
  cd $pkgname-soft-$pkgver
  make -C build DESTDIR="$pkgdir/" install
  install -t "$pkgdir/usr/share/openal" env-vars.txt hrtf.txt
}