diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2016-03-28 14:35:10 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2016-03-28 14:35:10 +1100 |
commit | d745a4ed908c28f6a97f1702f063e36174f43793 (patch) | |
tree | 9251a10165e089ac80feb0175260f565b98b6ca5 /openal-32 | |
parent | 0b8b53c658ef3705454678253f0ebcefd51c50ea (diff) | |
download | compat-32-d745a4ed908c28f6a97f1702f063e36174f43793.tar.gz compat-32-d745a4ed908c28f6a97f1702f063e36174f43793.tar.xz |
openal-32: initial import
Diffstat (limited to 'openal-32')
-rw-r--r-- | openal-32/.32bit | 0 | ||||
-rw-r--r-- | openal-32/.footprint | 7 | ||||
-rw-r--r-- | openal-32/.md5sum | 1 | ||||
-rw-r--r-- | openal-32/Pkgfile | 25 |
4 files changed, 33 insertions, 0 deletions
diff --git a/openal-32/.32bit b/openal-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/openal-32/.32bit diff --git a/openal-32/.footprint b/openal-32/.footprint new file mode 100644 index 00000000..3397fa4d --- /dev/null +++ b/openal-32/.footprint @@ -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 diff --git a/openal-32/.md5sum b/openal-32/.md5sum new file mode 100644 index 00000000..7bd7b942 --- /dev/null +++ b/openal-32/.md5sum @@ -0,0 +1 @@ +ea83dec3b9655a27d28e7bc7cae9cd71 openal-soft-1.15.1.tar.bz2 diff --git a/openal-32/Pkgfile b/openal-32/Pkgfile new file mode 100644 index 00000000..a445e40e --- /dev/null +++ b/openal-32/Pkgfile @@ -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} +} |