summaryrefslogtreecommitdiff
path: root/extra/openal/PKGBUILD
diff options
context:
space:
mode:
authorDaniel Molina García <lluvia@singularity.fr>2012-05-27 00:37:53 +0200
committerDaniel Molina García <lluvia@singularity.fr>2012-05-27 00:37:53 +0200
commit669fbc2a8d1763b4919c25957dd0184a195b7826 (patch)
tree16d58cc12df01003610a2ac83a66c49a0b2ad44d /extra/openal/PKGBUILD
parenta905625b4c8dd3e7558f9c988eeb749bd73279b4 (diff)
patching and forzing -rpath as temporal solution for openal
Diffstat (limited to 'extra/openal/PKGBUILD')
-rw-r--r--extra/openal/PKGBUILD19
1 files changed, 15 insertions, 4 deletions
diff --git a/extra/openal/PKGBUILD b/extra/openal/PKGBUILD
index 32c6a90f6..8135a00d2 100644
--- a/extra/openal/PKGBUILD
+++ b/extra/openal/PKGBUILD
@@ -13,12 +13,23 @@ 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)
-md5sums=('3d8b86c21a2f87a2a5e60f78f3b3f03d')
+source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$pkgver.tar.bz2
+ fpu.patch)
+
+md5sums=('3d8b86c21a2f87a2a5e60f78f3b3f03d'
+ '902d3f0e6cb16584f2b21d65235c3168')
build() {
- cd $pkgname-soft-$pkgver/build
- cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ..
+ # 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 \
+ # The next option was taken following the suggestions in this tutorial (spanish): http://manualinux.heliohost.org/blender.html
+ # mtjm suggests as an alternative to learn how to use cmake for finding ffmpeg libraries and send it upstream, avoiding then the use of -rpath
+ -D CMAKE_EXE_LINKER_FLAGS:STRING='-Wl,-rpath,/usr/lib -lavutil'\
+ ..
make
}