diff options
author | davidovski <david@davidovski.xyz> | 2022-05-17 19:11:18 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-17 19:11:18 +0100 |
commit | dccab9b94dcfc5e040647210ba22b9cc4bddc742 (patch) | |
tree | a43da72790761ec861b42855ce4828d5b24ea304 /repo/media/openal-soft/openal-soft.xibuild | |
parent | 50fb6c032e72a26b3fd881a18e1d1f535c95e0fc (diff) | |
parent | e3327c3fee233a042db91270c18ef1d7f217dc89 (diff) |
Merge branch 'master' of git.cheetah.remote:xilinux/buildfiles
Diffstat (limited to 'repo/media/openal-soft/openal-soft.xibuild')
-rw-r--r-- | repo/media/openal-soft/openal-soft.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/media/openal-soft/openal-soft.xibuild b/repo/media/openal-soft/openal-soft.xibuild new file mode 100644 index 0000000..c0d7137 --- /dev/null +++ b/repo/media/openal-soft/openal-soft.xibuild @@ -0,0 +1,23 @@ +#!/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 +} |