![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 816005b20157accd1a74838f6c3c2325118ff57a Author: Matt Housh <jaeger@crux.nu> Date: Mon Nov 13 09:27:27 2006 -0600 openal: moved to opt diff --git a/openal/.footprint b/openal/.footprint new file mode 100644 index 0000000..1a53212 --- /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-config +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/ +-rw-r--r-- root/root usr/lib/libopenal.a +-rwxr-xr-x root/root usr/lib/libopenal.la +lrwxrwxrwx root/root usr/lib/libopenal.so -> libopenal.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libopenal.so.1 -> libopenal.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libopenal.so.1.0.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 0000000..e69de29 diff --git a/openal/Pkgfile b/openal/Pkgfile new file mode 100644 index 0000000..d2a34f9 --- /dev/null +++ b/openal/Pkgfile @@ -0,0 +1,32 @@ +# Description: Cross-platform 3D audio +# URL: http://www.openal.org/ +# Maintainer: Matt Housh, jaeger at crux dot nu +# Depends on: subversion, alsa-lib, libvorbis, libsdl + +name=openal +version=svn +release=2 +source=() + +build() { + if [ -d $PKGMK_SOURCE_DIR/$name ] + then + svn update --config-dir . $PKGMK_SOURCE_DIR/$name + else + svn co --config-dir . \ + http://www.openal.org/repos/openal/trunk/OpenAL-Sample \ + $PKGMK_SOURCE_DIR/$name + fi + cp -a $PKGMK_SOURCE_DIR/$name $SRC/ + + cd $name + ./autogen.sh + ./configure --prefix=/usr \ + --exec-prefix=/usr \ + --enable-optimization \ + --enable-alsa \ + --enable-vorbis \ + --enable-sdl + make + make DESTDIR=$PKG install +}