pkgsrc/audio/forked-daapd/options.mk
nia 2c9e76a8e0 audio: Add forked-daapd
forked-daapd is a DAAP (iTunes), MPD (Music Player Daemon) and RSP (Roku)
media server.

It supports AirPlay devices/speakers, Apple Remote (and compatibles), MPD
clients, Chromecast, network streaming, internet radio, Spotify and LastFM.

It does not support streaming video by AirPlay nor Chromecast.

DAAP stands for Digital Audio Access Protocol which is the protocol used by
iTunes and friends to share/stream media libraries over the network.

forked-daapd is a complete rewrite of mt-daapd (Firefly Media Server).
2020-11-02 14:00:47 +00:00

28 lines
689 B
Makefile

# $NetBSD: options.mk,v 1.1 2020/11/02 14:00:47 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.forked-daapd
PKG_SUPPORTED_OPTIONS= avahi alsa pulseaudio
PKG_SUGGESTED_OPTIONS.Linux= alsa
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mavahi)
CONFIGURE_ARGS+= --with-avahi
.include "../../net/avahi/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-avahi
.endif
.if !empty(PKG_OPTIONS:Malsa)
CONFIGURE_ARGS+= --with-alsa
.include "../../audio/alsa-lib/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-alsa
.endif
.if !empty(PKG_OPTIONS:Mpulseaudio)
CONFIGURE_ARGS+= --with-pulseaudio
.include "../../audio/pulseaudio/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-pulseaudio
.endif