Signed-off-by: Joerg Seitter adk@seitter.net --- package/libconfig/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 package/libconfig/Makefile
diff --git a/package/libconfig/Makefile b/package/libconfig/Makefile new file mode 100644 index 000000000..4cb87e79f --- /dev/null +++ b/package/libconfig/Makefile @@ -0,0 +1,27 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= libconfig +PKG_VERSION:= 1.7.2 +PKG_RELEASE:= 1 +PKG_HASH:= 7c3c7a9c73ff3302084386e96f903eb62ce06953bb1666235fac74363a16fad9 +PKG_DESCR:= configuration library +PKG_SECTION:= libs/misc +PKG_URL:= https://github.com/hyperrealm/libconfig +PKG_SITES:= https://github.com/hyperrealm/libconfig/raw/master/docs/dist/ +PKG_OPTS:= dev + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBCONFIG,libconfig,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +libconfig-install: + $(INSTALL_DIR) $(IDIR_LIBCONFIG)/usr/lib + $(CP) $(WRKINST)/usr/lib/libconfig*.so* \ + $(IDIR_LIBCONFIG)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk
Signed-off-by: Joerg Seitter adk@seitter.net --- package/shairport-sync/Makefile | 40 +++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 package/shairport-sync/Makefile
diff --git a/package/shairport-sync/Makefile b/package/shairport-sync/Makefile new file mode 100644 index 000000000..d9279f0dc --- /dev/null +++ b/package/shairport-sync/Makefile @@ -0,0 +1,40 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= shairport-sync +PKG_VERSION:= 3.3.6 +PKG_RELEASE:= 1 +PKG_GIT:= tag +PKG_DESCR:= airplay daemon +PKG_SECTION:= mm/audio +PKG_DEPENDS:= libressl popt libdaemon libconfig jack mosquitto +PKG_BUILDDEP:= libressl popt libdaemon libconfig jack mosquitto +PKG_URL:= https://github.com/mikebrady/shairport-sync +PKG_SITES:= https://github.com/mikebrady/shairport-sync.git + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,SHAIRPORT_SYNC,shairport-sync,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) + +AUTOTOOL_STYLE:= autoreconf +CONFIGURE_ARGS+= --with-pkg-config \ + --without-systemv \ + --without-systemd \ + --with-libdaemon \ + --disable-avahi \ + --with-tinysvcmdns \ + --with-alsa \ + --with-jack \ + --with-mqtt-client \ + -with-ssl=openssl + +shairport-sync-install: + $(INSTALL_DIR) $(IDIR_SHAIRPORT_SYNC)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/shairport-sync \ + $(IDIR_SHAIRPORT_SYNC)/usr/bin + $(INSTALL_DATA) $(WRKINST)/etc/shairport-sync.conf \ + $(IDIR_SHAIRPORT_SYNC)/etc/shairport-sync.conf + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk
Signed-off-by: Joerg Seitter adk@seitter.net --- target/linux/config/Config.in.wireless | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/target/linux/config/Config.in.wireless b/target/linux/config/Config.in.wireless index 553e3bb39..4e1a2b104 100644 --- a/target/linux/config/Config.in.wireless +++ b/target/linux/config/Config.in.wireless @@ -39,6 +39,9 @@ config ADK_LINUX_KERNEL_NET_VENDOR_ATHEROS config ADK_LINUX_KERNEL_WLAN_VENDOR_BROADCOM bool
+config ADK_LINUX_KERNEL_WLAN_VENDOR_RALINK + bool + config ADK_LINUX_KERNEL_ATH_CARDS bool
@@ -272,6 +275,7 @@ config ADK_LINUX_KERNEL_P54_USB
config ADK_LINUX_KERNEL_RT2800USB tristate "Ralink rt2800 USB driver" + select ADK_LINUX_KERNEL_WLAN_VENDOR_RALINK select ADK_LINUX_KERNEL_RT2X00 select ADK_LINUX_KERNEL_RT2800USB_RT3573 select ADK_LINUX_KERNEL_RT2800USB_RT53XX
Signed-off-by: Joerg Seitter adk@seitter.net --- package/jack/Makefile | 1 + 1 file changed, 1 insertion(+)
diff --git a/package/jack/Makefile b/package/jack/Makefile index d189c4bad..bc301976a 100644 --- a/package/jack/Makefile +++ b/package/jack/Makefile @@ -13,6 +13,7 @@ PKG_BUILDDEP:= db python2-host alsa-lib libsndfile libsamplerate PKG_NEEDS:= threads c++ PKG_URL:= http://jackaudio.org PKG_SITES:= https://github.com/jackaudio/jack1.git +PKG_OPT:= dev
include $(ADK_TOPDIR)/mk/package.mk