freealut

OpenAL audio loading utility library for games and applications.

brewmacoslinux
Try with needOr install directly
Source

About

Implementation of OpenAL's ALUT standard

Examples

load and play audio files in game development$ gcc -o game game.c -lalut -lopenal
compile C program that uses OpenAL audio functions$ gcc -c audio_handler.c $(pkg-config --cflags freealut) -o audio_handler.o
link against freealut library for sound effects$ gcc game.c -o game $(pkg-config --libs freealut)
check freealut installation and available functions$ pkg-config --modversion freealut
compile with OpenAL audio support using freealut headers$ gcc -I/usr/local/include -L/usr/local/lib -o audio_app app.c -lalut -lopenal