diff options
author | sibel <sibel@free.fr> | 2010-02-27 15:49:44 +0100 |
---|---|---|
committer | sibel <sibel@free.fr> | 2010-02-27 15:49:44 +0100 |
commit | f9918d059520d60cd914f23304d8a101dbd342a1 (patch) | |
tree | b2213423375f24a053711c50943b69426ab88db9 /test/openal | |
parent | 9332487c6521ca1b58e7a9836a6158ab50d6f5fb (diff) | |
parent | 6e598c792c7aa2ec210123efee42601a01b09064 (diff) | |
download | nutyx-extra-f9918d059520d60cd914f23304d8a101dbd342a1.tar.gz nutyx-extra-f9918d059520d60cd914f23304d8a101dbd342a1.tar.bz2 nutyx-extra-f9918d059520d60cd914f23304d8a101dbd342a1.tar.xz nutyx-extra-f9918d059520d60cd914f23304d8a101dbd342a1.zip |
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'test/openal')
-rw-r--r-- | test/openal/.footprint | 12 | ||||
-rw-r--r-- | test/openal/.md5sum | 1 | ||||
-rw-r--r-- | test/openal/Pkgfile | 25 |
3 files changed, 38 insertions, 0 deletions
diff --git a/test/openal/.footprint b/test/openal/.footprint new file mode 100644 index 000000000..b17fa0900 --- /dev/null +++ b/test/openal/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/AL/ +-rw-r--r-- root/root usr/include/AL/al.h +-rw-r--r-- root/root usr/include/AL/alc.h +-rw-r--r-- root/root usr/include/AL/alext.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libopenal.so -> libopenal.so.1 +lrwxrwxrwx root/root usr/lib/libopenal.so.1 -> libopenal.so.1.10.622 +-rwxr-xr-x root/root usr/lib/libopenal.so.1.10.622 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/openal.pc diff --git a/test/openal/.md5sum b/test/openal/.md5sum new file mode 100644 index 000000000..9f4dfe1d9 --- /dev/null +++ b/test/openal/.md5sum @@ -0,0 +1 @@ +d6324d0e7a4fd799e48e720c023fe1c0 openal-soft-1.10.622.bz2 diff --git a/test/openal/Pkgfile b/test/openal/Pkgfile new file mode 100644 index 000000000..320c165d8 --- /dev/null +++ b/test/openal/Pkgfile @@ -0,0 +1,25 @@ +# Description: Cross-platform 3D audio. +# URL: http://connect.creativelabs.com/openal +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Matt Housh, jaeger at crux dot nu +# Depends on: alsa-lib, cmake + +name=openal +version=1.10.622 +release=1 +source=(http://connect.creativelabs.com/openal/Downloads/openal-soft-$version.bz2) + +build() { + tar -xjf openal-soft-$version.bz2 + cd openal-soft-$version/build + + cmake ../ \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DOSS=OFF \ + -DEXAMPLES=OFF \ + -DCMAKE_BUILD_TYPE=Release #-DCMAKE_VERBOSE_MAKEFILE=true + + make + make DESTDIR=$PKG install +} + |