libunwind: update to 1.8.1
[openadk.git] / package / shairport-sync / Makefile
blob75c6801f8f127c334fd52916f9fc412ce5d5e1e0
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR)/rules.mk
6 PKG_NAME:= shairport-sync
7 PKG_VERSION:= 3.3.8
8 PKG_RELEASE:= 1
9 PKG_GIT:= tag
10 PKG_DESCR:= airplay daemon
11 PKG_SECTION:= mm/audio
12 PKG_DEPENDS:= libressl libpopt libdaemon libconfig jack mosquitto libavahi
13 PKG_BUILDDEP:= libressl popt libdaemon libconfig jack mosquitto avahi
14 PKG_URL:= https://github.com/mikebrady/shairport-sync
15 PKG_SITES:= https://github.com/mikebrady/shairport-sync.git
17 include $(ADK_TOPDIR)/mk/package.mk
19 $(eval $(call PKG_template,SHAIRPORT_SYNC,shairport-sync,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
21 AUTOTOOL_STYLE:= autoreconf
22 CONFIGURE_ARGS+= --with-pkg-config \
23 --without-systemv \
24 --without-systemd \
25 --with-libdaemon \
26 --with-avahi \
27 --disable-tinysvcmdns \
28 --with-alsa \
29 --with-jack \
30 --with-mqtt-client \
31 -with-ssl=openssl
33 shairport-sync-install:
34 $(INSTALL_DIR) $(IDIR_SHAIRPORT_SYNC)/usr/bin
35 $(INSTALL_DIR) $(IDIR_SHAIRPORT_SYNC)/etc/shairport-sync
36 $(INSTALL_BIN) $(WRKINST)/usr/bin/shairport-sync \
37 $(IDIR_SHAIRPORT_SYNC)/usr/bin
38 $(INSTALL_DATA) $(WRKINST)/etc/* \
39 $(IDIR_SHAIRPORT_SYNC)/etc/shairport-sync/
41 include $(ADK_TOPDIR)/mk/pkg-bottom.mk