blob: c307963bc2e0d0176d32bd1e93b2442ef0fbc270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1 2020/05/15 17:38:35 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.strawberry
PKG_SUPPORTED_OPTIONS= pulseaudio
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpulseaudio)
CMAKE_ARGS+= -DLIBPULSE=ON
. include "../../audio/pulseaudio/buildlink3.mk"
.else
CMAKE_ARGS+= -DLIBPULSE=OFF
.endif
|