From d745a4ed908c28f6a97f1702f063e36174f43793 Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Mon, 28 Mar 2016 14:35:10 +1100 Subject: [PATCH] openal-32: initial import --- openal-32/.32bit | 0 openal-32/.footprint | 7 +++++++ openal-32/.md5sum | 1 + openal-32/Pkgfile | 25 +++++++++++++++++++++++++ 4 files changed, 33 insertions(+) create mode 100644 openal-32/.32bit create mode 100644 openal-32/.footprint create mode 100644 openal-32/.md5sum create mode 100644 openal-32/Pkgfile diff --git a/openal-32/.32bit b/openal-32/.32bit new file mode 100644 index 00000000..e69de29b 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} +}