aboutsummaryrefslogtreecommitdiff
path: root/audio/shairport-sync/Makefile
blob: b483eb951f683f47afc0369317aed82702de27b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
PORTNAME=	shairport-sync
DISTVERSION=	4.1.1
PORTREVISION=	2
CATEGORIES=	audio

MAINTAINER=	ehaupt@FreeBSD.org
COMMENT=	AirPlay audio player with multi-room audio synchronisation capability
WWW=		https://github.com/mikebrady/shairport-sync

LICENSE=	BSD3CLAUSE

LIB_DEPENDS=	libavahi-client.so:net/avahi-app \
		libconfig.so:devel/libconfig \
		libdaemon.so:devel/libdaemon \
		libpopt.so:devel/popt \
		libsoxr.so:audio/libsoxr

USES=		autoreconf libtool pkgconfig ssl
USE_GITHUB=	yes
GH_ACCOUNT=	mikebrady
USE_RC_SUBR=	${PORTNAME}

GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--sysconfdir=${LOCALBASE}/etc \
		--with-avahi \
		--with-libdaemon \
		--with-metadata \
		--with-piddir=/var/run/shairport-sync \
		--with-pipe \
		--with-soxr \
		--with-ssl=openssl \
		--with-stdout
CONFIGURE_ENV+=	SSL_CFLAGS=-I${OPENSSLINC} \
		SSL_LIBS=-L${OPENSSLLIB}

CFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-lcrypto

OPTIONS_DEFINE=		AIRPLAY2 ALAC ALSA MQTT PULSEAUDIO SNDIO
OPTIONS_DEFAULT=	AIRPLAY2 SNDIO
AIRPLAY2_DESC=		Build with AirPlay 2 protocol support
ALAC_DESC=		Build with libalac support (experimental)
MQTT_DESC=		Build with MQTT protocol support

AIRPLAY2_BUILD_DEPENDS=	vim:editors/vim
AIRPLAY2_LIB_DEPENDS=	libavutil.so:multimedia/ffmpeg \
			libgcrypt.so:security/libgcrypt \
			libplist-2.0.so:devel/libplist \
			libsodium.so:security/libsodium \
			libuuid.so:misc/e2fsprogs-libuuid
AIRPLAY2_RUN_DEPENDS=	nqptp:net/nqptp
AIRPLAY2_CONFIGURE_ON=	--with-airplay-2
AIRPLAY2_SUB_FILES=	pkg-message

ALAC_LIB_DEPENDS=	libalac.so:audio/alac
ALAC_CONFIGURE_ON=	--with-apple-alac

ALSA_LIB_DEPENDS=	libasound.so:audio/alsa-lib
ALSA_CONFIGURE_ON=	--with-alsa

MQTT_LIB_DEPENDS=	libmosquitto.so:net/mosquitto
MQTT_CONFIGURE_ON=	--with-mqtt-client

PULSEAUDIO_LIB_DEPENDS=		libpulse.so:audio/pulseaudio
PULSEAUDIO_CONFIGURE_ON=	--with-pa

SNDIO_LIB_DEPENDS=	libsndio.so:audio/sndio
SNDIO_CONFIGURE_ON=	--with-sndio

post-patch:
	@${REINPLACE_CMD} -e 's/-Wno-clobbered -Wno-psabi //' \
		${WRKSRC}/Makefile.am

.include <bsd.port.mk>