openal-32: initial import

This commit is contained in:
Danny Rawlins 2016-03-28 14:35:10 +11:00
parent 0b8b53c658
commit d745a4ed90
4 changed files with 33 additions and 0 deletions

0
openal-32/.32bit Normal file
View File

7
openal-32/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
lrwxrwxrwx root/root usr/lib32/libopenal.so -> libopenal.so.1
lrwxrwxrwx root/root usr/lib32/libopenal.so.1 -> libopenal.so.1.15.1
-rwxr-xr-x root/root usr/lib32/libopenal.so.1.15.1
drwxr-xr-x root/root usr/lib32/pkgconfig/
-rw-r--r-- root/root usr/lib32/pkgconfig/openal.pc

1
openal-32/.md5sum Normal file
View File

@ -0,0 +1 @@
ea83dec3b9655a27d28e7bc7cae9cd71 openal-soft-1.15.1.tar.bz2

25
openal-32/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Cross-platform 3D audio.
# URL: http://kcat.strangesoft.net/openal.html
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: openal alsa-lib-32 cmake
name=openal-32
version=1.15.1
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 \
-DLIB_SUFFIX=32 \
-DOSS=OFF \
-DEXAMPLES=OFF \
-DCMAKE_BUILD_TYPE=Release #-DCMAKE_VERBOSE_MAKEFILE=true
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share}
}