diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2011-10-17 22:15:57 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2011-10-17 22:15:57 +1100 |
commit | 78b271f19fda4f3c4577f22d49fa30217b5ef661 (patch) | |
tree | fde34f7affcd65a990e2469e65f71989c4eb325e /openal | |
parent | fda40b696a20d7be679c4269fd3e9956eff637ee (diff) | |
download | opt-78b271f19fda4f3c4577f22d49fa30217b5ef661.tar.gz opt-78b271f19fda4f3c4577f22d49fa30217b5ef661.tar.xz |
openal: moved contrib -> opt
Diffstat (limited to 'openal')
-rw-r--r-- | openal/.footprint | 16 | ||||
-rw-r--r-- | openal/.md5sum | 1 | ||||
-rw-r--r-- | openal/Pkgfile | 23 |
3 files changed, 40 insertions, 0 deletions
diff --git a/openal/.footprint b/openal/.footprint new file mode 100644 index 000000000..40bb2ac48 --- /dev/null +++ b/openal/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/openal-info +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 +-rw-r--r-- root/root usr/include/AL/efx-creative.h +-rw-r--r-- root/root usr/include/AL/efx.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.13.0 +-rwxr-xr-x root/root usr/lib/libopenal.so.1.13.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/openal.pc diff --git a/openal/.md5sum b/openal/.md5sum new file mode 100644 index 000000000..83c7a7ee6 --- /dev/null +++ b/openal/.md5sum @@ -0,0 +1 @@ +58b7d2809790c70681b825644c5f3614 openal-soft-1.13.tar.bz2 diff --git a/openal/Pkgfile b/openal/Pkgfile new file mode 100644 index 000000000..3aee103c4 --- /dev/null +++ b/openal/Pkgfile @@ -0,0 +1,23 @@ +# Description: Cross-platform 3D audio. +# URL: http://kcat.strangesoft.net/openal.html +# 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.13 +release=1 +source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$version.tar.bz2) + +build() { + 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 +} |