summaryrefslogtreecommitdiff
path: root/repo/media/openal-soft
diff options
context:
space:
mode:
Diffstat (limited to 'repo/media/openal-soft')
-rw-r--r--repo/media/openal-soft/openal-soft.xibuild23
1 files changed, 0 insertions, 23 deletions
diff --git a/repo/media/openal-soft/openal-soft.xibuild b/repo/media/openal-soft/openal-soft.xibuild
deleted file mode 100644
index c0d7137..0000000
--- a/repo/media/openal-soft/openal-soft.xibuild
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-NAME="openal-soft"
-DESC="software implementation of OpenAL API"
-
-MAKEDEPS="cmake "
-DEPS="ffmpeg4 musl sdl2 "
-
-PKG_VER=1.22.0
-SOURCE="https://github.com/kcat/openal-soft/archive/$PKG_VER.tar.gz"
-
-build () {
- cmake -B build \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=/usr/lib \
- -DBUILD_SHARED_LIBS=True \
- -DBUILD_STATIC_LIBS=OFF
- cmake --build build
-}
-
-package () {
- DESTDIR="$PKG_DEST" cmake --install build
-}