diff options
author | fanch <fanchyannmaria at orange dot fr> | 2010-06-13 15:13:30 +0200 |
---|---|---|
committer | fanch <fanchyannmaria at orange dot fr> | 2010-06-13 15:13:30 +0200 |
commit | 5361762d094cc0b4131977e81ca6c966f1ac02e3 (patch) | |
tree | 8cf81056148135042835a1557a10206314c1769a | |
parent | 3472733e06923fff8f45fadef0b82d255574f794 (diff) | |
download | nutyx-pakxe-5361762d094cc0b4131977e81ca6c966f1ac02e3.tar.gz nutyx-pakxe-5361762d094cc0b4131977e81ca6c966f1ac02e3.tar.bz2 nutyx-pakxe-5361762d094cc0b4131977e81ca6c966f1ac02e3.tar.xz nutyx-pakxe-5361762d094cc0b4131977e81ca6c966f1ac02e3.zip |
mise à jour openal#1.12.854-1
-rw-r--r-- | test/openal/.footprint | 7 | ||||
-rw-r--r-- | test/openal/.md5sum | 2 | ||||
-rw-r--r-- | test/openal/Pkgfile | 21 |
3 files changed, 13 insertions, 17 deletions
diff --git a/test/openal/.footprint b/test/openal/.footprint index b17fa0900..5217e280a 100644 --- a/test/openal/.footprint +++ b/test/openal/.footprint @@ -1,12 +1,15 @@ 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.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 +lrwxrwxrwx root/root usr/lib/libopenal.so.1 -> libopenal.so.1.12.854 +-rwxr-xr-x root/root usr/lib/libopenal.so.1.12.854 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 index 9f4dfe1d9..bb6258bcc 100644 --- a/test/openal/.md5sum +++ b/test/openal/.md5sum @@ -1 +1 @@ -d6324d0e7a4fd799e48e720c023fe1c0 openal-soft-1.10.622.bz2 +fbf36451fdebd6466edbdc0ee7db9603 openal-soft-1.12.854.tar.bz2 diff --git a/test/openal/Pkgfile b/test/openal/Pkgfile index 320c165d8..92f8e37e0 100644 --- a/test/openal/Pkgfile +++ b/test/openal/Pkgfile @@ -2,24 +2,17 @@ # 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 +# Depends on: alsa-lib, cmake, sdl, pkgconfig name=openal -version=1.10.622 +version=1.12.854 release=1 -source=(http://connect.creativelabs.com/openal/Downloads/openal-soft-$version.bz2) +source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$version.tar.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 + cd $SRC/$name-soft-$version/build + cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release .. + make + make DESTDIR=$PKG/ install } |