ef9662b2e0
ALURE is a utility library to help manage common tasks with OpenAL applications. This includes device enumeration and initialization, file loading, and streaming. The purpose of this library is to provide pre-made functionality that would otherwise be repetitive or difficult to (re)code for various projects and platforms, such as loading a sound file into an OpenAL buffer and streaming an audio file through a buffer queue. Support for different formats is consistant across platforms, so no special checks are needed when loading files, and all formats are handled through the same API. Packaged by Bastian Germann in PR pkg/53613.
14 lines
335 B
Makefile
14 lines
335 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2018/09/21 13:24:34 maya Exp $
|
|
|
|
BUILDLINK_TREE+= alure
|
|
|
|
.if !defined(ALURE_BUILDLINK3_MK)
|
|
ALURE_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.alure+= alure>=1.2
|
|
BUILDLINK_PKGSRCDIR.alure?= ../../audio/alure
|
|
|
|
.include "../../audio/openal-soft/buildlink3.mk"
|
|
.endif # ALURE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -alure
|